Client & network general improvement
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
package gltronic.tronio.model;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
public class GameSettings {
|
||||
private double playerSize;
|
||||
private double playerSpeed;
|
||||
@@ -14,4 +12,13 @@ public class GameSettings {
|
||||
private double wallSize;
|
||||
private double wallUpdate;
|
||||
private double arenaSize;
|
||||
|
||||
public GameSettings () {
|
||||
this.arenaSize = 1000;
|
||||
this.playerSize = 10;
|
||||
this.playerSpeed = 2;
|
||||
this.playerTurnSpeed = 10;
|
||||
this.wallSize = 8;
|
||||
this.wallUpdate = 5;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user