Moved to main directory instead of src folder
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package control.joystick;
|
||||
|
||||
public class JoystickEvent {
|
||||
private Joystick joystick;
|
||||
private Long now;
|
||||
|
||||
public JoystickEvent(Joystick joystick, Long now){
|
||||
this.joystick = joystick;
|
||||
this.now = now;
|
||||
}
|
||||
|
||||
public Joystick getJoystick() {
|
||||
return joystick;
|
||||
}
|
||||
|
||||
public Long getNow() {
|
||||
return now;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user