Syntriax.Engine/Engine.Core/Abstract/IGameObject.cs

11 lines
247 B
C#
Raw Normal View History

2023-11-23 22:07:49 +03:00
using System;
namespace Syntriax.Engine.Core.Abstract;
public interface IGameObject : IEntity, IAssignableTransform, IAssignableBehaviourController, INameable, IInitialize
{
Action<IGameObject>? OnUpdated { get; set; }
2023-11-23 22:07:49 +03:00
void Update();
2023-11-23 22:07:49 +03:00
}