aboutsummaryrefslogtreecommitdiff
path: root/AmpelJonas/cObject.h
blob: c3114c30aad0d3fb59927864da8337ecdeb87af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#include <stdlib.h>

#include "cRender.h"

struct sObject

{
	sPos pos;
	WORD **wColor;
	char **cScreen;
	int sizeX;
	int sizeY;
};

class cObject : public cRender
{
public:
	cObject(int _sx, int _sy);
	//_sx : SizeX
	//_sy : SizeY

	~cObject();

	sPos getPosition();

	void setPosition(sPos _pos);

	void setPosition(int _x, int _y);

	sObject getObject();

private:
	//wColor, cScreen, sizeX and sizeY are inherited from cRender
	sPos pos;
};