Editor.ObjetoEscena.ObjetoEscena C# (CSharp) Method

ObjetoEscena() public method

public ObjetoEscena ( byte tipo, byte id, short x, short y, byte rotation, short width, short height, string script, string estilo, int upper ) : System
tipo byte
id byte
x short
y short
rotation byte
width short
height short
script string
estilo string
upper int
return System
        public ObjetoEscena(byte tipo, byte id, short x, short y, byte rotation, short width, short height, string script,string estilo, int upper)
        {
            this.posX = x;
            this.posY = y;
            this.id = id;
            this.rotation = rotation;
            this.tipo = tipo;
            this.dynamic = false;
            this.width = width;
            this.height = height;
            this.script = script;
            this.estilo = estilo;
            this.upper = upper;
        }

Same methods

ObjetoEscena::ObjetoEscena ( ) : System
ObjetoEscena