예제 #1
0
파일: DXTileSet.cs 프로젝트: jimu/ZunTzu
 internal DXTileSet(DXGraphics graphics, IFile imageFile, IFile maskFile, DetailLevelType detailLevel)
 {
     this.graphics    = graphics;
     this.imageFile   = imageFile;
     this.maskFile    = maskFile;
     this.detailLevel = detailLevel;
 }
예제 #2
0
파일: DXTileSet.cs 프로젝트: jimu/ZunTzu
 internal DXTileSet(DXGraphics graphics, IFile imageFile, DetailLevelType detailLevel)
     : this(graphics, imageFile, null, detailLevel)
 {
 }