Dicewars-Siedler/src/game/DicewarsApp.h
2026-02-08 20:05:48 +01:00

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