#ifndef UICLASS_H
#define UICLASS_H

#include <common.h>

class UIClass {
	public:
		void handleEvents();
};

#endif // UICLASS_H