9 lines
		
	
	
		
			157 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			157 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Engine.Core;
 | 
						|
 | 
						|
namespace Engine.Integration.MonoGame;
 | 
						|
 | 
						|
public interface IDrawableTriangle : IBehaviour
 | 
						|
{
 | 
						|
    void Draw(ITriangleBatch triangleBatch);
 | 
						|
}
 |