Visitors following paths..sort of..

This commit is contained in:
Yorick
2015-04-07 22:01:07 +02:00
parent f2c1544d71
commit 1f6811332e
3 changed files with 134 additions and 13 deletions
+3 -3
View File
@@ -131,7 +131,7 @@ public class Panel extends JPanel implements ActionListener
addMouseMotionListener(new MouseMotion(this));
addMouseWheelListener(new MouseWheel(this));
t = new Timer(1000 / 100, this);
t = new Timer(1000 / 10, this);
}
public int getPanelInfoLength()
@@ -548,12 +548,12 @@ public class Panel extends JPanel implements ActionListener
}
public javax.swing.Timer getT()
public Timer getT()
{
return t;
}
public void setT(javax.swing.Timer t)
public void setT(Timer t)
{
this.t = t;
}