chore: Added Initial Engine Code
This commit is contained in:
12
Engine.Core/Abstract/IGameObject.cs
Normal file
12
Engine.Core/Abstract/IGameObject.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace Syntriax.Engine.Core.Abstract;
|
||||
|
||||
public interface IGameObject : IEntity, IAssignableTransform, IAssignableBehaviourController, INameable, IInitialize
|
||||
{
|
||||
Action<IGameObject, GameTime>? OnUpdated { get; set; }
|
||||
|
||||
void Update(GameTime time);
|
||||
}
|
||||
Reference in New Issue
Block a user