aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/include/gameObject.h
blob: 0e179915658fceb902910e85302e9bb485896be4 (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
#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;
};