summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Library.cc
blob: bb1e548bb8b9341833f60e1f613a71641b61a100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "objects.h"

void Library::load_pix() {
	int i;
        char *name[] = {"wingdows", "apple", "next", "sgi", "sun", "os2",
		"bsd", "linux", "redhat", "hurd"};
	for (i=0; i <= NUM_OS; i++) {
		os[i].load(name[i]);
		if (i) cursor[i].load(name[i], cursor[i].OWN_MASK);
	}
	width = os[0].width;
	height = os[0].height;
}