13 lines
160 B
C++
13 lines
160 B
C++
#pragma once
|
|
|
|
namespace game
|
|
{
|
|
void setUpdateTicks(const int ticks);
|
|
|
|
void init();
|
|
|
|
bool loop();
|
|
|
|
const char* getParams(const int index);
|
|
}
|