Rev 1720 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.bauzoid2.graphics;
import com.gebauz.bauzoid2.game.BauzoidException;
import com.gebauz.bauzoid2.graphics.renderstates.RenderStates;
public class Graphics
{
// Constants========================================================================================
// Embedded Types===================================================================================
// Fields===========================================================================================
public RenderStates renderStates =
new RenderStates
();
// Methods==========================================================================================
public Graphics()
{
try
{
renderStates.
initialize();
}
catch (BauzoidException ex
)
{
ex.
printStackTrace();
}
}
public void init
()
{
}
public void exit
()
{
}
public void update
()
{
}
public void render
()
{
}
// Getters/Setters==================================================================================
}