1
0

update cmd client

This commit is contained in:
2026-01-08 19:37:25 +08:00
parent 64368b7837
commit 7b22dfb66b
13 changed files with 105 additions and 93 deletions

View File

@@ -190,8 +190,8 @@ private:
std::vector<BYTE> depth_data; ///< 深度数据
public:
virtual void Startup(EngineConfig&& config) override {
IEngine::Startup(std::move(config));
virtual void startup(EngineConfig&& config) override {
IEngine::startup(std::move(config));
// 创建Win32窗口并显示
if (this->config.headless) {
@@ -320,8 +320,8 @@ public:
//frameCount = 0;
}
virtual bool Tick() override {
if (IEngine::Tick()) return true;
virtual bool tick() override {
if (IEngine::tick()) return true;
// Event loop
if (EventLoop()) return true;
@@ -368,8 +368,8 @@ public:
return false;
}
virtual void Shutdown() override {
IEngine::Shutdown();
virtual void shutdown() override {
IEngine::shutdown();
//if (hPipe != INVALID_HANDLE_VALUE) {
// CloseHandle(hPipe);