mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 10:49:41 +01:00
4eb7f973ef
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.
26 lines
281 B
C
26 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 */
|