Hello WWWWWWorld!

This commit is contained in:
Ethan Lee
2020-01-01 15:29:24 -05:00
commit f7c0321b71
133 changed files with 154973 additions and 0 deletions

View 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 */