package wyf.cgq;
import java.io.*;
import java.net.*;
import java.util.*;
public class PaintThread extends Thread{//服务器端的绘制方法
TankServer father;
boolean flag=true;
public PaintThread(TankServer father){//构造器
this.father=father;
}
public void run(){//重写的run方法
while(flag){
try{
sleep(100);
}
catch(Exception e){e.printStackTrace();}
father.repaint();//每隔一段时间绘制一次
}
}
}
最近下载更多
zr20050503 LV2
2024年6月27日
juiceoa LV2
2024年6月14日
12345685 LV2
2024年1月7日
陈小灏 LV18
2023年7月1日
哇撒是大帅耶 LV3
2022年12月17日
干翻元宇宙 LV1
2022年11月8日
WEIdong123 LV2
2022年10月26日
胡胡霜 LV2
2022年5月29日
xiaoqing12350 LV4
2022年5月21日
你想 LV1
2021年6月25日

最近浏览