Advertisement
ZeronSix

Carmack-Style Rocketsauce

Feb 13th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. #include "rocketsauce.h"
  2. #include <SOIL.h>
  3.  
  4. int main()
  5. {
  6.     RS_Init();
  7.     Screen_CreateViewport( 800, 600 );
  8.     Screen_SetVSync( false );
  9.     Screen_SetViewportTitle( "Sprite Test" );
  10.  
  11.     while ( !Screen_AppShouldClose() )
  12.     {
  13.         Screen_StartFrame();
  14.  
  15.        
  16.  
  17.         Screen_EndFrame();
  18.     }
  19.    
  20.     RS_Finish();
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement