dl
dl_action.h
浏览该文件的文档.
1
11#pragma once
12
13#include <list>
14
16
17namespace dl
18{
21{
22public:
23 void Add(Action* act)
24 {
25 _allAction.push_back(act);
26 }
27
28 void Render()
29 {
30
31 }
32
33#ifndef DL_DISABLE_RENDER
35#endif
36
38 void _update();
39
41private:
42 std::list<Action*> _allAction;
43};
44
46}
动作系统对象
动作系统管理器
void ExCreateCurtain(FloatTime t)
void Add(Action *act)
void _update()
由system调用
动作定义
float FloatTime
ActionManager * g_action