You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
474 B

#pragma once
// 系统库
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
#include <easyx.h>
using namespace std;
// 项目库
#include "define.h"
#include "wall.h"
#include "bean.h"
#include "player.h"
#include "monster.h"
class Tool
{
public:
Wall ImportWall(int num);
Bean ImportBean(int num);
Player ImportPlayer(int num);
Monster ImportMonster(int num);
string num2str(int num);
int str2num(string str);
char* str2char(string str);
};