diff options
author | Joel Machens <ajmach6@gmail.com> | 2023-11-05 04:47:41 +0100 |
---|---|---|
committer | BrickPi <49528459+BrickPi@users.noreply.github.com> | 2023-11-08 14:34:47 +0100 |
commit | 67d7a855992ab25ff2c47b12860c2eb7c9241ae2 (patch) | |
tree | d2d812bd80bc8530889230a9dfc58df8f3c37915 /src/openvic-simulation/military/Wargoal.hpp | |
parent | 4e2e6e541f0dde406f90f668d6ff153f95d2aa45 (diff) |
Diplomacy History Loading
Diffstat (limited to 'src/openvic-simulation/military/Wargoal.hpp')
-rw-r--r-- | src/openvic-simulation/military/Wargoal.hpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/openvic-simulation/military/Wargoal.hpp b/src/openvic-simulation/military/Wargoal.hpp index fc9e3af..dbb8d67 100644 --- a/src/openvic-simulation/military/Wargoal.hpp +++ b/src/openvic-simulation/military/Wargoal.hpp @@ -8,24 +8,24 @@ namespace OpenVic { struct WargoalTypeManager; enum class peace_options_t : uint32_t { - PO_ANNEX = 0b1000000000000000, - PO_DEMAND_STATE = 0b0100000000000000, - PO_COLONY = 0b0010000000000000, - PO_ADD_TO_SPHERE = 0b0001000000000000, - PO_DISARMAMENT = 0b0000100000000000, - PO_REMOVE_FORTS = 0b0000100000000000, - PO_REMOVE_NAVAL_BASES = 0b0000100000000000, - PO_REPARATIONS = 0b0000010000000000, - PO_REPAY_DEBT = 0b0000001000000000, - PO_REMOVE_PRESTIGE = 0b0000000100000000, - PO_MAKE_PUPPET = 0b0000000010000000, - PO_RELEASE_PUPPET = 0b0000000001000000, - PO_STATUS_QUO = 0b0000000000100000, - PO_INSTALL_COMMUNISM = 0b0000000000010000, - PO_REMOVE_COMMUNISM = 0b0000000000001000, - PO_REMOVE_CORES = 0b0000000000000100, // only usable with ANNEX, DEMAND_STATE, or TRANSFER_PROVINCES - PO_TRANSFER_PROVINCES = 0b0000000000000010, - PO_CLEAR_UNION_SPHERE = 0b0000000000000001 + PO_ANNEX = 0b100000000000000000, + PO_DEMAND_STATE = 0b010000000000000000, + PO_COLONY = 0b001000000000000000, + PO_ADD_TO_SPHERE = 0b000100000000000000, + PO_DISARMAMENT = 0b000010000000000000, + PO_REMOVE_FORTS = 0b000001000000000000, + PO_REMOVE_NAVAL_BASES = 0b000000100000000000, + PO_REPARATIONS = 0b000000010000000000, + PO_REPAY_DEBT = 0b000000001000000000, + PO_REMOVE_PRESTIGE = 0b000000000100000000, + PO_MAKE_PUPPET = 0b000000000010000000, + PO_RELEASE_PUPPET = 0b000000000001000000, + PO_STATUS_QUO = 0b000000000000100000, + PO_INSTALL_COMMUNISM = 0b000000000000010000, + PO_REMOVE_COMMUNISM = 0b000000000000001000, + PO_REMOVE_CORES = 0b000000000000000100, // only usable with ANNEX, DEMAND_STATE, or TRANSFER_PROVINCES + PO_TRANSFER_PROVINCES = 0b000000000000000010, + PO_CLEAR_UNION_SPHERE = 0b000000000000000001 }; template<> struct enable_bitfield<peace_options_t> : std::true_type{}; |