The-Powder-Toy/includes/interface/Panel.h

23 lines
312 B
C
Raw Normal View History

2012-01-08 11:39:03 -06:00
/*
* 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_ */