slot 0.0.1
A real time UI render framework
载入中...
搜索中...
未找到
SimpleGameObject.h
浏览该文件的文档.
1//
2// Created by zhou_zhengming on 2026/5/20.
3//
4
5#pragma once
6
7#include "GameObject.h"
8
9namespace z8 {
10class SimpleGameObject : public GameObjectImpl<DirectX::XMFLOAT4X4> {
11public:
12 void Update(Timer*) override;
13};
14}
15
16
17
18
Definition GameObject.h:30
Definition SimpleGameObject.h:10
void Update(Timer *) override
Definition SimpleGameObject.cpp:13
Definition Timer.h:8
Definition Application.h:14