crocparty/main.c

10 lines
281 B
C
Raw Normal View History

2024-02-25 03:00:23 +00:00
#include "sdl_host.h"
int main() {
// PYREX NOTE: You could, if you wanted, define another host with the same interface as sdl_host
// That would be pretty cool, right?
//
// (Such a host might be smaller and more platform-specific.)
return sdl_host_main();
}