Example #1
0
        public Mapper(int bound_a, int bound_b, int bound_x, int bound_y,
		              Colors colors, string font_face)
        {
            this.map = new Map(bound_a, bound_b, bound_x, bound_y);
            this.colors = colors;
            this.font_face = font_face;
        }
Example #2
0
 public MapBitmap(int dim_x, int dim_y, Colors colors, string font_face)
 {
     this.dimension_x = dim_x;
     this.dimension_y = dim_y;
     this.font_face = font_face;
     this.colors = colors;
 }