View Javadoc
1   /*
2    * Created on 2004-12-23
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package org.sourceforge.jvb3d.Control;
8   
9   import java.util.TimerTask;
10  import org.sourceforge.jvb3d.Network.*;
11  /***
12   * @author spootnick
13   *
14   * Klasa realizująca automatyczną funkcjonalność po stronie klienta
15   */
16  public class ServerTask extends ControlTask {
17  
18  	/***
19  	 * Inicjalizuje rozsyłanie informacji o świecie do klientów
20  	 */
21  	public void run() {
22  		network.sendAllUpdate();
23  		//System.out.println("Server update all");
24  	}
25  
26  }