Legger til pushere. Closes #45

This commit is contained in:
2020-04-24 22:43:31 +02:00
parent 4b9eadc9f2
commit 62f9ccded5
4 changed files with 52 additions and 4 deletions

View File

@@ -19,7 +19,15 @@ public enum WallType {
/**
* A wall with two lasers
*/
WALL_LASER_DOUBLE(4);
WALL_LASER_DOUBLE(4),
/**
* A pusher which pushes on every odd phase
*/
WALL_PUSHER_ODD(5),
/**
* A pusher which pushes on every even phase
*/
WALL_PUSHER_EVEN(6);
private final int wallTypeID;