Exemplo n.º 1
0
        public CallComponent(ChunkPort chunkPort)
        {
            this.chunkPort = chunkPort;

            RegisterType(typeof(int));
            RegisterType(typeof(short));
            RegisterType(typeof(byte));
            RegisterType(typeof(float));
            RegisterType(typeof(double));
            RegisterType(typeof(bool));
            RegisterType(typeof(string));
            RegisterType(typeof(Vector2));
            RegisterType(typeof(Vector3));
        }
Exemplo n.º 2
0
 public ObjectComponent(ChunkPort chunkPort)
 {
     this.chunkPort = chunkPort;
 }