feat: monogame content loader interface added

This commit is contained in:
2025-07-25 21:40:57 +03:00
parent 200e8ae7da
commit ad365dc722
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using Microsoft.Xna.Framework.Content;
using Syntriax.Engine.Core;
namespace Syntriax.Engine.Integration.MonoGame;
public interface ILoadContent : IBehaviour
{
void LoadContent(ContentManager content);
}