12 Star 70 Fork 24

tuxiaobei/mario

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tortoise.h 507 Bytes
一键复制 编辑 原始数据 按行查看 历史
tuxiaobei 提交于 2022-01-04 11:45 . 更新readme.md,添加注释
//乌龟
#pragma once
#include "collider.h"
class Tortoise :
public Collider
{
private:
double sx = 0, sy = 0;
int direction;
Costume ct;
int animation_time = -1;
int state = 0; //0走路,1睡觉静止,2滑动
int sleep_time; //睡眠开始时间
bool killed = false; //是否被击杀
protected:
bool report_collision(int direction, Collider* target, int target_collider_layer);
public:
Costume getcostume();
std::pair<double, double> getctpos();
bool update();
void kill(int direction);
Tortoise(char* s);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/tuxiaobei/mario.git
git@gitee.com:tuxiaobei/mario.git
tuxiaobei
mario
mario
master

搜索帮助