summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
blob: 803c1e4d698a8e23d52be51bc3687dc4682a5234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef entity_h
#define entity_h

#include "window.hpp"
#include "location.hpp"

class Entity
{
	public:
		void Place();
		SDL_Texture* loadTexture(std::string path, Window main);

	protected:
        //Location L;
		int xPosition, yPosition; //Coordinates of entity on window
		int height, width;        //Dimensions of image on window
		int degrees = 0;
		SDL_Texture* texture;
		SDL_Renderer* renderer;
};

#endif