mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 21:51:53 +01:00
12 lines
213 B
C
12 lines
213 B
C
|
#ifndef PROGRAM_H
|
||
|
#define PROGRAM_H
|
||
|
|
||
|
//Using modified version of draw to render at twice the scale to improve framerate
|
||
|
#include "draw.h"
|
||
|
|
||
|
#include "pong.h"
|
||
|
|
||
|
void _entryPoint();
|
||
|
|
||
|
#endif /* PROGRAM_H */
|