mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
19 lines
337 B
C++
19 lines
337 B
C++
#ifndef _SDLGLDraw_SDLGLDraw_h
|
|
#define _SDLGLDraw_SDLGLDraw_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <SDLGLDraw/SDLGLDraw.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class SDLGLDraw : public TopWindow {
|
|
public:
|
|
virtual void Paint(Draw& w);
|
|
|
|
typedef SDLGLDraw CLASSNAME;
|
|
SDLGLDraw();
|
|
};
|
|
|
|
#endif
|