mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 16:39:42 +01:00
16 lines
273 B
C++
16 lines
273 B
C++
#ifndef LEVELDEBUGGER_H
|
|
#define LEVELDEBUGGER_H
|
|
|
|
#include <SDL.h>
|
|
|
|
namespace level_debugger
|
|
{
|
|
bool is_pausing(void);
|
|
bool is_active(void);
|
|
void input(void);
|
|
void logic(void);
|
|
void render(void);
|
|
void set_forced(void);
|
|
}
|
|
|
|
#endif /* LEVELDEBUGGER_H */
|