diff options
author | Hop311 <hop3114@gmail.com> | 2023-09-15 22:55:00 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-09-15 23:22:03 +0200 |
commit | 8add7c666455a8a4edd9e02ca5a33f78a25e8f2c (patch) | |
tree | 65b1f27aecea054bc708d2ee0d6eb4ae981b3fc3 /src/openvic-simulation/types/IdentifierRegistry.hpp | |
parent | 46bbbb038e5fa21e25fa33c4fee84e4b14690885 (diff) |
First go at Modifiers
Diffstat (limited to 'src/openvic-simulation/types/IdentifierRegistry.hpp')
-rw-r--r-- | src/openvic-simulation/types/IdentifierRegistry.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvic-simulation/types/IdentifierRegistry.hpp b/src/openvic-simulation/types/IdentifierRegistry.hpp index 20eebb9..3f73a2c 100644 --- a/src/openvic-simulation/types/IdentifierRegistry.hpp +++ b/src/openvic-simulation/types/IdentifierRegistry.hpp @@ -37,7 +37,7 @@ namespace OpenVic { const colour_t colour; protected: - HasColour(const colour_t new_colour, bool can_be_null); + HasColour(const colour_t new_colour, bool can_be_null, bool can_have_alpha); public: HasColour(HasColour const&) = delete; @@ -55,7 +55,7 @@ namespace OpenVic { */ class HasIdentifierAndColour : public HasIdentifier, public HasColour { protected: - HasIdentifierAndColour(const std::string_view new_identifier, const colour_t new_colour, bool can_be_null); + HasIdentifierAndColour(const std::string_view new_identifier, const colour_t new_colour, bool can_be_null, bool can_have_alpha); public: HasIdentifierAndColour(HasIdentifierAndColour const&) = delete; |