mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 10:49:41 +01:00
29 lines
331 B
C
29 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)
|
|
{
|
|
}
|