feat: IMonoGameContentLoader

This commit is contained in:
2024-02-05 12:25:55 +03:00
parent 8a0a0289f9
commit b1582ab5c2
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.Xna.Framework.Content;
namespace Pong.Behaviours;
public interface IMonoGameContentLoader
{
void LoadContent(ContentManager content);
}