main.c 283 B

123456789101112131415161718
  1. #include <stdio.h>
  2. #include "rasteriver.h"
  3. int main(){
  4. RI_SetDebugFlag(1);
  5. if (RI_Init(800, 800, "Rasteriver Test") == RI_ERROR){
  6. return 1;
  7. }
  8. RI_RequestPolygons(100);
  9. while (RI_IsRunning() == RI_RUNNING){
  10. RI_Tick();
  11. }
  12. RI_Stop();
  13. }