The-Powder-Toy/includes/interface/Panel.h
Simon Robertshaw b0ea52690b Initial
2012-01-08 17:39:03 +00:00

23 lines
312 B
C++

/*
* Panel.h
*
* Created on: Jan 8, 2012
* Author: Simon
*/
#ifndef PANEL_H_
#define PANEL_H_
#include "interface/Component.h"
namespace ui {
class Panel: public ui::Component {
public:
Panel(int x, int y, int width, int height);
virtual ~Panel();
};
} /* namespace ui */
#endif /* PANEL_H_ */