Changed license to Creative Commons Zero (CC0).
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / ViewUpdateTimerTask.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  *
5 *
6  */
7
8 package eu.svjatoslav.sixth.e3d.gui;
9
10 public class ViewUpdateTimerTask extends java.util.TimerTask {
11
12     public ViewPanel viewPanel;
13
14     public ViewUpdateTimerTask(final ViewPanel viewPanel) {
15         this.viewPanel = viewPanel;
16     }
17
18     @Override
19     public void run() {
20
21         // update and possibly render view
22         viewPanel.updateView();
23     }
24
25 }