Update 1.19.4 (#233)

This commit is contained in:
Soda5601
2023-03-19 00:29:06 +08:00
committed by GitHub
parent e33ecf441e
commit 29509947c6
50 changed files with 271 additions and 238 deletions

View File

@@ -0,0 +1,12 @@
package anticope.rejects.events;
public class OffGroundSpeedEvent {
public static final OffGroundSpeedEvent INSTANCE = new OffGroundSpeedEvent();
public float speed;
public static OffGroundSpeedEvent get(float speed) {
INSTANCE.speed = speed;
return INSTANCE;
}
}