11 lines
271 B
C#
11 lines
271 B
C#
using System;
|
|
|
|
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
public interface IGameObject : IEntity, IAssignableGameManager, IAssignableTransform, IAssignableBehaviourController, INameable, IInitialize
|
|
{
|
|
Action<IGameObject>? OnUpdated { get; set; }
|
|
|
|
void Update();
|
|
}
|