mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-01 02:34:41 +03:00
Add support for multiple Network backends, stub in GOGNetwork
This commit is contained in:
29
desktop_version/src/GOGNetwork.c
Normal file
29
desktop_version/src/GOGNetwork.c
Normal 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)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user