10 lines
173 B
C#
10 lines
173 B
C#
using Ghost.Engine.Core;
|
|
using Ghost.Entities;
|
|
|
|
namespace Ghost.Engine.Components;
|
|
|
|
public struct SceneID : IComponent // TODO: ISharedComponent
|
|
{
|
|
public Scene scene;
|
|
}
|