9 lines
177 B
C++
Executable file
9 lines
177 B
C++
Executable file
#include "ExposableFloat.h"
|
|
|
|
FExposableFloat::FExposableFloat() {
|
|
this->Value = 0.00f;
|
|
this->Exposed = false;
|
|
this->MinValue = 0.00f;
|
|
this->MaxValue = 0.00f;
|
|
}
|
|
|