1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-22 10:22:52 +01:00
openrw/rwviewer/ViewerWidget.hpp
2014-02-10 12:41:05 +00:00

16 lines
253 B
C++

#pragma once
#ifndef _VIEWERWIDGET_HPP_
#define _VIEWERWIDGET_HPP_
#include <QGLWidget>
class ViewerWidget : public QGLWidget
{
public:
virtual void initializeGL();
virtual void resizeGL(int w, int h);
virtual void paintGL();
};
#endif