dsgmLib/examples/DrawableBackground/source/main.c
CTurt 3d7900c4ca Drawable backgrounds
New example to show drawable backrounds. When dealing with input, Touch
has been renamed to Stylus.
2014-09-07 19:14:02 +01:00

18 lines
239 B
C

#include "DSGM.h"
void DSGM_Init(void);
int main(int argc, char **argv) {
DSGM_Init();
DSGM_LoadRoom(&DSGM_Rooms[DSGM_currentRoom]);
while(1) {
DSGM_LoopRoom(&DSGM_Rooms[DSGM_currentRoom]);
DSGM_Update();
}
return 0;
}