The-Powder-Toy/src/interface/Panel.cpp

24 lines
333 B
C++
Raw Normal View History

2012-01-08 11:39:03 -06:00
/*
* Panel.cpp
*
* Created on: Jan 8, 2012
* Author: Simon
*/
#include "interface/Panel.h"
namespace ui {
Panel::Panel(int x, int y, int width, int height):
Component(x, y, width, height)
{
// TODO Auto-generated constructor stub
}
Panel::~Panel() {
// TODO Auto-generated destructor stub
}
} /* namespace ui */