BREAKING CHANGE: Removed MonoGame Package

This commit is contained in:
2024-01-22 22:45:40 +03:00
parent 1c884d49bb
commit 81f9ef10bf
16 changed files with 53 additions and 296 deletions

View File

@@ -1,12 +1,10 @@
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; }
Action<IGameObject>? OnUpdated { get; set; }
void Update(GameTime time);
void Update();
}