DangerousD/DangerousD/GameCore/GameObjects/GameObject.cs
2023-08-14 11:25:16 +03:00

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);
}
}
}