commit 25/07/2025
This commit is contained in:
11
src/CRSDK/CrSlotNumber.java
Normal file
11
src/CRSDK/CrSlotNumber.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package CRSDK;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public enum CrSlotNumber {
|
||||
CrSlotNumber_Slot1(0x00000001),
|
||||
CrSlotNumber_Slot2(CrSlotNumber_Slot1.getValue() + 1);
|
||||
|
||||
private final CrInt32u value;
|
||||
CrSlotNumber(int value) { this.value = new CrInt32u(value); }
|
||||
public int getValue() { return value.intValue(); }
|
||||
}
|
||||
Reference in New Issue
Block a user