Shipwright/libultraship/libultraship/Utils.h

13 lines
234 B
C++

#pragma once
#include <string>
#include <vector>
namespace Ship {
namespace Math {
float clamp(float d, float min, float max);
}
std::vector<std::string> SplitText(const std::string& text, char separator, bool keep_quotes);
}