First commit 15/07/2025
This commit is contained in:
16
src/CRSDK/CrZoomOperation.java
Normal file
16
src/CRSDK/CrZoomOperation.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package CRSDK;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public enum CrZoomOperation {
|
||||
CrZoomOperation_Wide (-1),
|
||||
CrZoomOperation_Stop (0),
|
||||
CrZoomOperation_Tele (1);
|
||||
|
||||
private final CrInt8 value;
|
||||
CrZoomOperation(int value) {
|
||||
this.value = new CrInt8(value);
|
||||
}
|
||||
public int getValue() {
|
||||
return value.intValue();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user