10 lines
281 B
C
10 lines
281 B
C
#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();
|
|
}
|