12 lines
204 B
C#
12 lines
204 B
C#
|
namespace ProjectAntiAircraftGun
|
|||
|
{
|
|||
|
abstract public class GameObject
|
|||
|
{
|
|||
|
public Point position;
|
|||
|
public GameObject()
|
|||
|
{
|
|||
|
position = new Point();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|