1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00
VVVVVV/desktop_version/src/Network.h

27 lines
420 B
C
Raw Normal View History

2020-01-01 21:29:24 +01:00
#ifndef VNETWORK_H
#define VNETWORK_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
int32_t NETWORK_init(void);
2020-01-01 21:29:24 +01:00
void NETWORK_shutdown(void);
2020-01-01 21:29:24 +01:00
void NETWORK_update(void);
2020-01-01 21:29:24 +01:00
void NETWORK_unlockAchievement(const char *name);
int32_t NETWORK_getAchievementProgress(const char *name);
void NETWORK_setAchievementProgress(const char *name, int32_t stat);
#ifdef __cplusplus
}
#endif
#endif /* VNETWORK_H */