예제 #1
0
        private void GetInfo()
        {
            this.scrn = this.nitro.GetBlock <Scrn>(0);

            this.TileSize = new System.Drawing.Size(8, 8);
            this.Width    = this.scrn.Width;
            this.Height   = this.scrn.Height;
            this.BgMode   = this.scrn.BgMode;
            this.SetMapInfo(this.scrn.Info);
        }
예제 #2
0
파일: Nscr.cs 프로젝트: pleonex/ninoimager
        private void GetInfo()
        {
            this.scrn = this.nitro.GetBlock<Scrn>(0);

            this.TileSize = new System.Drawing.Size(8, 8);
            this.Width    = this.scrn.Width;
            this.Height   = this.scrn.Height;
            this.BgMode   = this.scrn.BgMode;
            this.SetMapInfo(this.scrn.Info);
        }
예제 #3
0
파일: Nscr.cs 프로젝트: pleonex/ninoimager
 public Nscr()
 {
     this.nitro = new NitroFile("NSCR", "1.0", BlockTypes);
     this.scrn = new Scrn(this.nitro);
     this.nitro.Blocks.Add(this.scrn);
 }
예제 #4
0
 public Nscr()
 {
     this.nitro = new NitroFile("NSCR", "1.0", BlockTypes);
     this.scrn  = new Scrn(this.nitro);
     this.nitro.Blocks.Add(this.scrn);
 }