11 lines
211 B
C#
11 lines
211 B
C#
using Microsoft.Xna.Framework.Content;
|
|
|
|
using Syntriax.Engine.Core;
|
|
|
|
namespace Syntriax.Engine.Integration.MonoGame;
|
|
|
|
public interface ILoadContent : IBehaviour
|
|
{
|
|
void LoadContent(ContentManager content);
|
|
}
|