mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:51:53 +01:00
12 lines
213 B
C
Executable File
12 lines
213 B
C
Executable File
#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 */
|