update cmd client
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user