Exemplo n.º 1
0
        public System.Collections.Generic.List <byte> __encode()
        {
            var data = new System.Collections.Generic.List <byte>();

            if (this.info == null)
            {
                this.info = new SceneEventInfoArray();
            }
            data.AddRange(this.info.__encode());
            return(data);
        }
Exemplo n.º 2
0
 public int __decode(byte[] binData, ref int pos)
 {
     this.info = new SceneEventInfoArray();
     this.info.__decode(binData, ref pos);
     return(pos);
 }
Exemplo n.º 3
0
 public SceneEventNotice(SceneEventInfoArray info)
 {
     this.info = info;
 }
Exemplo n.º 4
0
 public SceneEventNotice()
 {
     info = new SceneEventInfoArray();
 }