commit 25/07/2025

This commit is contained in:
2025-07-25 13:29:53 +07:00
parent cb92964949
commit 123bd9cf73
32 changed files with 411 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrShootingEnableSettingLicense {
CrShootingEnableSettingLicense_Enable(0x01),
CrShootingEnableSettingLicense_Disable(CrShootingEnableSettingLicense_Enable.getValue() + 1);
private final CrInt8u value;
CrShootingEnableSettingLicense(int value) { this.value = new CrInt8u(value); }
public int getValue() { return value.intValue(); }
}