/src/Component.h
#ifndef _COMPONENT_H
#define _COMPONENT_H

class Component {
public:
	Component();
	Component(int x, int y, int w, int h);
	~Component();

	void setPosition(int x, int y);
	void setSize(int w, int h);
protected:
	int x, y, w, h;
};

#endif //_COMPONENT_H