1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00
VVVVVV/desktop_version/src/GOGNetwork.c
Misa 4eb7f973ef Axe NETWORK_[set/get]AchievementProgress()
These are unused.

Ethan originally added them in case Terry wanted achievement
percentages. But he didn't add them, and I don't think the achievements
are changing anytime soon, so it's safe to remove this dead code.
2021-09-19 21:49:54 -07:00

27 lines
281 B
C

#include "MakeAndPlay.h"
#ifndef MAKEANDPLAY
#include <stdint.h>
/* Totally unimplemented right now! */
int32_t GOG_init(void)
{
return 0;
}
void GOG_shutdown(void)
{
}
void GOG_update(void)
{
}
void GOG_unlockAchievement(const char *name)
{
}
#endif /* MAKEANDPLAY */