21 lines
369 B
C++
21 lines
369 B
C++
//
|
|
// Created by sebastian on 23.12.25.
|
|
//
|
|
|
|
#ifndef DICEWARS_SIEDLER_DICEWARSAPP_H
|
|
#define DICEWARS_SIEDLER_DICEWARSAPP_H
|
|
#include "GameLayer.h"
|
|
#include "GameMode.h"
|
|
#include "../engine/core/Application.h"
|
|
|
|
|
|
class DicewarsApp: public Application
|
|
{
|
|
private:
|
|
std::shared_ptr<GameMode> gameMode;
|
|
public:
|
|
DicewarsApp();
|
|
};
|
|
|
|
|
|
#endif //DICEWARS_SIEDLER_DICEWARSAPP_H
|