Files
MonoGame.Extended/Source/MonoGame.Extended.SceneGraphs/SceneGraphExtensions.cs
T

12 lines
291 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace MonoGame.Extended.SceneGraphs
{
public static class SceneGraphExtensions
{
public static void Draw(this SpriteBatch spriteBatch, SceneGraph sceneGraph)
{
sceneGraph.Draw(spriteBatch);
}
}
}