smrendererv3/SMCode/SM2D/Scene/Scene.cs
Michel Fedde c4a0847567 20.09.2020
+ Instance Drawing
+ Text and Font

~ Made "DrawBackground" forced Background for 2D

- DrawEmpty
2020-09-20 18:29:09 +02:00

16 lines
No EOL
327 B
C#

using OpenTK.Graphics;
using SM.Base.Scene;
using SM2D.Drawing;
namespace SM2D.Scene
{
public class Scene : GenericScene<Camera>
{
public DrawBackground Background => (DrawBackground)_background;
public Scene()
{
_background = new DrawBackground(Color4.Black);
}
}
}