1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00
VVVVVV/desktop_version/src/GOGNetwork.c
Misa c64fd89325 Untabify every single file
YOLO.

This is a repeat of #642. As before, I just did

    rg -l '\t' | xargs -n 1 sed -i -e 's/\t/    /g'

inside the desktop_version/ folder.
2021-09-06 18:56:39 -07:00

36 lines
422 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)
{
}
int32_t GOG_getAchievementProgress(const char *name)
{
return 0;
}
void GOG_setAchievementProgress(const char *name, int32_t stat)
{
}
#endif /* MAKEANDPLAY */