mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
30 lines
331 B
C
30 lines
331 B
C
|
#include <stdint.h>
|
||
|
|
||
|
/* Totally unimplemented right now! */
|
||
|
|
||
|
int32_t GOG_init()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void GOG_shutdown()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void GOG_update()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void GOG_unlockAchievement(const char *name)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int32_t GOG_getAchievementProgress(const char *name)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void GOG_setAchievementProgress(const char *name, int32_t stat)
|
||
|
{
|
||
|
}
|