📄 walk.h
字号:
#ifndef __WALK_H
#define __WALK_H
#pragma once
#pragma warning(disable:4786) // anti-STL
#include <set>
#include "../win_and_sock.h"
#include "../data.h"
typedef struct PathList
{
short x,y;
PathList * next;
}PathList;
extern int walking_state; // 0 - staying; 1 - walking
///////////////////////
int walk_init(void);
void walk_finish(void);
int walk_on_STT_WalkOk(ParsePoint *pp);
int walk_on_cmd_rtrecOn(ParsePoint * pp);
int walk_on_cmd_rtrecOff(ParsePoint * pp);
int walk_on_cmd_rtld(ParsePoint * pp, char * rtfile);
int walk_on_cmd_rtgo(ParsePoint * pp);
int walk_on_cmd_rtst(ParsePoint * pp);
int walk_stayhere(ParsePoint * pp);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -