penguins  1.0.0
main.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "gui/better_random.hh"
4 #include "gui/tileset.hh"
5 #include <wx/app.h>
6 #include <wx/iconbndl.h>
7 
8 class GameFrame;
9 
10 class PenguinsApp : public wxApp {
11 public:
13 
14  virtual bool OnInit() override;
15 
20 };
21 
wxIconBundle app_icon
Definition: main.hh:16
BetterRng rng
Definition: main.hh:19
virtual bool OnInit() override
Definition: main.cc:18
GameFrame * game_frame
Definition: main.hh:18
PenguinsApp()
Definition: main.hh:12
TilesetHelper tileset
Definition: main.hh:17
wxDECLARE_APP(PenguinsApp)
An implementation of Rng for C++ using the standard functions from <random>.