15 lines
231 B
C++
15 lines
231 B
C++
#pragma once
|
|
|
|
namespace game
|
|
{
|
|
void setUpdateTicks(const int ticks);
|
|
|
|
void init();
|
|
|
|
void setState(bool (*loop)());
|
|
|
|
void setConfig(const char* key, const int value);
|
|
|
|
const int getConfig(const char* key);
|
|
}
|