Files
spectrumAnalyzer/Game.cpp
T
EmsiaetKadosh 28a836ff5f 更改字符集
2025-03-06 16:49:23 +08:00

20 lines
634 B
C++

//
// Created by EmsiaetKadosh on 25-1-14.
//
#include "Game.h"
Game::Game() : caption{ new CaptionWindow() }, floatWindow{ new FloatWindow() } {
Logger.put(L"Game created");
random.seed(timeGetTime());
}
Game::~Game() {
setWindow(nullptr);
delete floatWindow;
delete caption;
}
inline Game game = Game();