mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
10 lines
301 B
C++
10 lines
301 B
C++
|
#include "BlockDefinition.h"
|
||
|
|
||
|
BlockDefinition BlockDefinition::blockDefinitionDefault{};
|
||
|
|
||
|
BlockDefinition::BlockDefinition(std::string defaultValue, float minimumValue, float maximumValue) {
|
||
|
this->defaultValue = defaultValue;
|
||
|
this->minimumValue = minimumValue;
|
||
|
this->maximumValue = maximumValue;
|
||
|
}
|