root/week1oplossing/Week1Oplossing.h

210
18
#include "KeyValueLijst.h"
18
#include "KeyValueLijst.h"
19
#include "KeyValuePaar.h"
19
#include "KeyValuePaar.h"
20
#include "vector3.h"
20
#include "vector3.h"
21
22
class functionpointertest;
23
21
using namespace Machiel;
24
using namespace Machiel;
22
//-----------------------------------------------------------------
25
//-----------------------------------------------------------------
23
// Week1Oplossing Class																
26
// Week1Oplossing Class																
...
...
42
	void GameInitialize(HINSTANCE hInstance);
45
	void GameInitialize(HINSTANCE hInstance);
43
	void GameStart();				
46
	void GameStart();				
44
	void GamePaint(RECT rect);
47
	void GamePaint(RECT rect);
48
	void MyPwnFunction(int i);
45
49
46
private:
50
private:
47
	// -------------------------
51
	// -------------------------
48
	// Datamembers
52
	// Datamembers
49
	// -------------------------
53
	// -------------------------
50
	int onetime;
54
// 	int onetime;
51
	IntLijst lijst1;
55
// 	IntLijst lijst1;
52
	IntLijst lijst2;
56
// 	IntLijst lijst2;
53
	IntLijst lijst3;
57
// 	IntLijst lijst3;
54
	IntLijst lijst4;
58
// 	IntLijst lijst4;
59
functionpointertest *mFptest;
55
60
61
56
	// -------------------------
62
	// -------------------------
57
	// Disabling default copy constructor and default assignment operator.
63
	// Disabling default copy constructor and default assignment operator.
58
	// If you get a linker error from one of these functions, your class is internally trying to use them. This is
64
	// If you get a linker error from one of these functions, your class is internally trying to use them. This is