aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/include/gameObject.h
blob: 69f4d52b353cba0f6166070b42fa334762fdb7ba (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
#pragma once
#include <iostream>
class GameObject {
public:
	GameObject();
	GameObject(std::string name, float x, float y, float width, float height,
			   float velX, float velY);
	std::string getName() const;
	float getX() const;
	float getY() const;
	float getWidth() const;
	float getHeight() const;
	float getVelX() const;
	float getVelY() const;
	void setName(std::string value);
	void setX(float value);
	void setY(float value);
	void setWidth(float value);
	void setHeight(float value);
	void setVelX(float value);
	void setVelY(float value);

private:
	std::string name = "";
	float x = 0;
	float y = 0;
	float width = 0;
	float height = 0;
	float velX = 0;
	float velY = 0;
};