Engine-Pong/Game/Abstract/IContentLoader.cs

9 lines
158 B
C#
Raw Permalink Normal View History

2024-02-05 12:25:55 +03:00
using Microsoft.Xna.Framework.Content;
namespace Pong.Behaviours;
public interface IMonoGameContentLoader
{
void LoadContent(ContentManager content);
}