First commit 15/07/2025

This commit is contained in:
2025-07-15 15:01:48 +07:00
parent 4222ceb824
commit b63c0f1d65
51 changed files with 939 additions and 0 deletions

View 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();
}
}