1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-17 18:18:30 +02:00
VVVVVV/desktop_version/src/GOGNetwork.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)
{
}