aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/include/gameObject.h
blob: abdc9b0534fc4e3cabc59ade5dece42b1725892f (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
#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);
	int direction;

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