Added cShapePoint for Physics ( usefull to draw boxes or rounded points faster ).

Working on the Physics example.
Updated fonts example.
This commit is contained in:
Martín Lucas Golini
2013-06-20 23:56:54 -03:00
parent 12087c1a65
commit fa62113ad7
11 changed files with 664 additions and 16 deletions

View File

@@ -6,11 +6,11 @@ EE_MAIN_FUNC int main (int argc, char * argv [])
// Create a new window
cWindow * win = cEngine::instance()->CreateWindow( WindowSettings( 960, 640, "eepp - Empty Window" ) );
// Set window background color
win->BackColor( eeColor( 50, 50, 50 ) );
// Check if created
if ( win->Created() ) {
// Set window background color
win->BackColor( eeColor( 50, 50, 50 ) );
// Create an instance of the primitive renderer
cPrimitives p;