New version control.

This commit is contained in:
Neil Edelman
2016-09-11 02:35:22 -04:00
commit 640aa303a7
12 changed files with 2653 additions and 0 deletions

16
Oss.h Normal file
View File

@@ -0,0 +1,16 @@
/* change the strings "%63s" etc too! */
#define HISTSIZE 64
struct Oss {
int room;
int points;
int friends;
int enemies;
int education;
int trouble;
short flags;
char history[HISTSIZE];
char name[8];
};
void OssMessage(const struct Oss *o, const char *message, ...);