DumpDVD/DumpDVD/Gui/MainWindow.hpp

15 lines
206 B
C++

#ifndef _LI_MAINWINDOW_H
#define _LI_MAINWINDOW_H 1
#include <string>
#include "SDL.hpp"
namespace Li::Gui {
class MainWindow {
private:
SDL* sdl;
public:
MainWindow();
~MainWindow();
};
}
#endif