8 lines
199 B
C#
8 lines
199 B
C#
namespace Engine.Scene.Component;
|
|
|
|
public abstract class Component(GameObject gameObject)
|
|
{
|
|
public Guid Id { get; } = Guid.NewGuid();
|
|
|
|
public GameObject GameObject { get; } = gameObject;
|
|
} |