The-Powder-Toy/includes/interface.old/Panel.h
2012-01-14 18:51:24 +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_ */