コード例 #1
0
ファイル: Player.cs プロジェクト: rain1598/12P1DFPS
 public void addObj(Lib.obj thing, int x, int y)
 {
     entities.Add(new Vector2(x, y), thing);
     map[x, y] = thing;
 }
コード例 #2
0
ファイル: Graphics.cs プロジェクト: rain1598/12P1DFPS
 public byte bright; //luminosity
 public pixc(Lib.obj type, byte bright)
 {
     this.type   = type;
     this.bright = bright;
 }