mirror of
https://github.com/zhenyan121/SporeBG-Conid.git
synced 2026-04-10 06:14:08 +08:00
23 lines
252 B
C++
23 lines
252 B
C++
// src/core/Game.h
|
|
#pragma once
|
|
#include <SDL3/SDL.h>
|
|
#include <memory>
|
|
#include "Board.h"
|
|
|
|
|
|
|
|
|
|
class Game {
|
|
private:
|
|
std::unique_ptr<Board> m_board;
|
|
|
|
|
|
|
|
|
|
public:
|
|
Game();
|
|
~Game();
|
|
void cleanup();
|
|
bool initialize();
|
|
|
|
}; |