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