Add support for multiple Network backends, stub in GOGNetwork

This commit is contained in:
Ethan Lee
2020-01-13 11:15:17 -05:00
parent 8be05ca40f
commit 9758290cf3
5 changed files with 151 additions and 19 deletions

View File

@@ -0,0 +1,29 @@
#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)
{
}