feat: GameObjects are now Connected to a Single IGameManager

This commit is contained in:
2024-01-30 12:26:17 +03:00
parent 4000e761a7
commit 1438b19e35
4 changed files with 44 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ using System;
namespace Syntriax.Engine.Core.Abstract;
public interface IGameObject : IEntity, IAssignableTransform, IAssignableBehaviourController, INameable, IInitialize
public interface IGameObject : IEntity, IAssignableGameManager, IAssignableTransform, IAssignableBehaviourController, INameable, IInitialize
{
Action<IGameObject>? OnUpdated { get; set; }