Example #1
0
 public Movie(int width, int height, RGB backColor)
 {
     this.BackColor = backColor;
     this.Height = height;
     this.Width = width;
     this.Frames = new FrameArray();
 }
Example #2
0
 public Movie(int width, int height, RGB backColor)
 {
     this.BackColor = backColor;
     this.Height    = height;
     this.Width     = width;
     this.Frames    = new FrameArray();
 }
Example #3
0
 public DefineSprite()
     : base(0x27)
 {
     this._Frames = new FrameArray();
 }
Example #4
0
 public DefineSprite() : base(0x27)
 {
     this._Frames = new FrameArray();
 }