mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-17 15:05:05 -05:00
14 lines
276 B
C++
14 lines
276 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);
|
|
std::string toLowerCase(std::string in);
|
|
} |