コード例 #1
0
ファイル: cartographer.cs プロジェクト: justi1jc/FPS
 /* Constructor for map generation. */
 public Cartographer(int n, int m)
 {
     this.master = Cartographer.GetMaster();
     this.n      = n;
     this.m      = m;
     rand        = new System.Random();
 }
コード例 #2
0
 /* Loads the master map file into map or creates new one. */
 public void LoadMaster()
 {
     map = Cartographer.GetMaster();
 }