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

23 lines
276 B
C++

/*
* Window.h
*
* Created on: Jan 8, 2012
* Author: Simon
*/
#ifndef WINDOW_H_
#define WINDOW_H_
#include "interface/State.h"
namespace ui {
class Window: public ui::State {
public:
Window();
virtual ~Window();
};
} /* namespace ui */
#endif /* WINDOW_H_ */