MC聊天器
#include <iostream>
#include <string>
#include "minecraft.h"
using namespace std;
int mian(int argc, char** argv){
TxMinecraft tongxin;
tongxin.ConnectMinecraft("tk.makebiock.net.cn","08bd17c1ea594f2684182fd956c2d172");
string chat;
cout<<"请你输入一句话:";
cin>>chat;
cout<<"你要发送的内容是:"<<chat;
tongxin.sendChat(chat);
tongxin.CloseMinecraft();
return 0;
}