easyx_framework V1.0.0
基于easyx的c++游戏框架
 
载入中...
搜索中...
未找到
F:/vc/project/esayx_framewoek/esayx_framewoek/pea.h
浏览该文件的文档.
1#pragma once
2#include"BaseBullets.h"
3
4class Pea :public BaseBullet
5{
6public:
7 Pea();
8
9 void Update(float deltaTime);
10};
定义 BaseBullets.h:6
定义 pea.h:5
Pea()
定义 pea.cpp:3
void Update(float deltaTime)
实现闪烁功能
定义 pea.cpp:8
float deltaTime
帧的时间间隔
定义 Sprite.h:21