mirror of
https://github.com/CTurt/dsgmLib.git
synced 2025-06-19 15:15:31 -04:00

New example to show drawable backrounds. When dealing with input, Touch has been renamed to Stylus.
18 lines
239 B
C
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;
|
|
}
|