78
1
using System;
2
using System.Collections.Generic;
3
4
public enum PointType
5
{
6
HOSPITAL,
7
CAFE,
8
RESTAURANT
9
}
10
public class Point
11
{
12
private readonly int x;
13
private readonly int y;
14
private readonly PointIcon icon;
15
16
public Point(int x, int y, PointIcon icon)
17
{
18
this.x = x;
19
this.y = y;
20
this.icon = icon;
21
}
22
23
public void Draw()
24
{
Cached Result