mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Hello WWWWWWorld!
This commit is contained in:
28
desktop_version/src/Network.h
Normal file
28
desktop_version/src/Network.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef VNETWORK_H
|
||||
#define VNETWORK_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int NETWORK_init();
|
||||
|
||||
void NETWORK_shutdown();
|
||||
|
||||
void NETWORK_update();
|
||||
|
||||
void NETWORK_unlockAchievement(const char *name);
|
||||
|
||||
int32_t NETWORK_getAchievementProgress(const char *name);
|
||||
|
||||
void NETWORK_setAchievementProgress(const char *name, int32_t stat);
|
||||
|
||||
/* TODO: Steam Workshop? */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* VNETWORK_H */
|
||||
Reference in New Issue
Block a user