Rev 790 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BauzoidNET.graphics;
using BauzoidNET.graphics.renderstates;
namespace BauzoidNET
.app
{
public class BauzoidApp
{
private Graphics mGraphics
= null;
public BauzoidApp
()
{
mGraphics
= new Graphics
(this);
}
public void init
(int width,
int height
)
{
mGraphics
.init(width, height
);
}
public void exit
()
{
mGraphics
.exit();
}
public Graphics getGraphics
()
{
return mGraphics
;
}
public RenderStates getRenderStates
()
{
return mGraphics
.renderStates;
}
}
}