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

23 lines
276 B
C
Raw Normal View History

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