15 lines
271 B
C#
15 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DangerousD.GameCore
|
|
{
|
|
class GameObject
|
|
{
|
|
GraphicsComponent graphicsComponent;
|
|
public GameObject()
|
|
{
|
|
GameManager.Register(this);
|
|
}
|
|
}
|
|
}
|