Skip to content

Instantly share code, notes, and snippets.

@Zetaeta
Created June 16, 2012 17:47
Show Gist options
  • Save Zetaeta/2942068 to your computer and use it in GitHub Desktop.
Save Zetaeta/2942068 to your computer and use it in GitHub Desktop.
#ifndef MINECRAFTLAUNCHER_HPP
#define MINECRAFTLAUNCHER_HPP
#include <QMainWindow>
namespace Launcher {
class MinecraftLauncher : public QMainWindow
{
Q_OBJECT
public:
explicit MinecraftLauncher(QWidget *parent = 0);
~MinecraftLauncher();
private slots:
void testSlot();
};
}
#endif // MINECRAFTLAUNCHER_HPP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment