コード例 #1
0
ファイル: Movie.cs プロジェクト: wuzhen/SwfDecompiler
 public Movie(int width, int height, RGB backColor)
 {
     this.BackColor = backColor;
     this.Height = height;
     this.Width = width;
     this.Frames = new FrameArray();
 }
コード例 #2
0
 public Movie(int width, int height, RGB backColor)
 {
     this.BackColor = backColor;
     this.Height    = height;
     this.Width     = width;
     this.Frames    = new FrameArray();
 }
コード例 #3
0
ファイル: DefineSprite.cs プロジェクト: wuzhen/SwfDecompiler
 public DefineSprite()
     : base(0x27)
 {
     this._Frames = new FrameArray();
 }
コード例 #4
0
 public DefineSprite() : base(0x27)
 {
     this._Frames = new FrameArray();
 }