summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Library.cc
Unidiff
Diffstat (limited to 'noncore/games/kbill/Library.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/Library.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/noncore/games/kbill/Library.cc b/noncore/games/kbill/Library.cc
new file mode 100644
index 0000000..bb1e548
--- a/dev/null
+++ b/noncore/games/kbill/Library.cc
@@ -0,0 +1,13 @@
1#include "objects.h"
2
3void Library::load_pix() {
4 int i;
5 char *name[] = {"wingdows", "apple", "next", "sgi", "sun", "os2",
6 "bsd", "linux", "redhat", "hurd"};
7 for (i=0; i <= NUM_OS; i++) {
8 os[i].load(name[i]);
9 if (i) cursor[i].load(name[i], cursor[i].OWN_MASK);
10 }
11 width = os[0].width;
12 height = os[0].height;
13}