首页 > 代码库 > <THREE BODY>

<THREE BODY>

/*
 *    <three_Body>
 *
 *  author: dying_fish_wyzxkfx
 *
 *    
 
 */

public class threeBody{
    public static void main(String[] args){
        /*定义一个文明*/
        wenMing i = 0;
        /*显示决策列表*/
        wenMing.showChoice();
    }
}

class wenMing{
    wenMing(){
        /*尽可能将描述文明的参数简单化*/
        int science = 0;
        int resource = 0;     
    }
    public void showChoice(){}
    public void sendMessage(int x, int y, String[] message){}
    public void attack(int x, int y){}
    public void patrol(int x, int y){}
}

 

<THREE BODY>