/* Constructor for map generation. */ public Cartographer(int n, int m) { this.master = Cartographer.GetMaster(); this.n = n; this.m = m; rand = new System.Random(); }
/* Loads the master map file into map or creates new one. */ public void LoadMaster() { map = Cartographer.GetMaster(); }