コード例 #1
0
ファイル: LevelObject.cs プロジェクト: ask88/IsoRPG
 public LevelObject(eLevelTag tag, string path, int startX, int startY,
                    int endX, int endY, int width, int height, GameObject player)
 {
     this.tag    = tag;
     this.path   = path;
     this.startX = startX;
     this.startY = startY;
     this.endX   = endX;
     this.endY   = endY;
     this.width  = width;
     this.height = height;
     this.player = player;
 }
コード例 #2
0
ファイル: LevelObject.cs プロジェクト: ask88/IsoRPG
 public void setTag(eLevelTag tag)
 {
     this.tag = tag;
 }