1
0

feat: add target camera in BMapInspector

This commit is contained in:
2026-02-05 14:32:49 +08:00
parent 1eb9d3f805
commit d3af894d2f
4 changed files with 22 additions and 22 deletions

View File

@@ -437,13 +437,13 @@ namespace LibCmo::CK2 {
constexpr CKGUID(CKDWORD gd1 = 0, CKDWORD gd2 = 0) : d1(gd1), d2(gd2) {}
CKGUID(const CKGUID& rhs) : d1(rhs.d1), d2(rhs.d2) {}
CKGUID(CKGUID&& rhs) : d1(rhs.d1), d2(rhs.d2) {}
CKGUID(CKGUID&& rhs) noexcept : d1(rhs.d1), d2(rhs.d2) {}
CKGUID& operator=(const CKGUID& rhs) {
this->d1 = rhs.d1;
this->d2 = rhs.d2;
return *this;
}
CKGUID& operator=(CKGUID&& rhs) {
CKGUID& operator=(CKGUID&& rhs) noexcept {
this->d1 = rhs.d1;
this->d2 = rhs.d2;
return *this;