summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Library.h
Unidiff
Diffstat (limited to 'noncore/games/kbill/Library.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/Library.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/games/kbill/Library.h b/noncore/games/kbill/Library.h
new file mode 100644
index 0000000..eda2fcf
--- a/dev/null
+++ b/noncore/games/kbill/Library.h
@@ -0,0 +1,19 @@
1#ifndef LIBRARY_H
2#define LIBRARY_H
3
4#include "Picture.h"
5#include "MCursor.h"
6
7 class Library { /* global structure of all OSes */
8public:
9 static const int WINGDOWS = 0;/* OS 0 is wingdows */
10 static const int OFF = -1;/* OS -1 means the computer is off */
11 static const int PC = 5;/* OS >= PC means the OS is a PC OS */
12 static const int NUM_OS = 9;/* The number of OSes (not Wingdows) */
13 int width, height; /* size of OS picture*/
14 Picture os[NUM_OS+1]; /* array of OS pictures*/
15 MCursor cursor[NUM_OS+1];/* array of OS cursors (drag/drop) */
16 void load_pix();
17};
18
19#endif