mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-24 06:41:52 -05:00
13 lines
232 B
C++
13 lines
232 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace math {
|
|
float clamp(float d, float min, float max);
|
|
}
|
|
|
|
namespace Utils {
|
|
std::vector<std::string> SplitText(const std::string& text, char separator, bool keep_quotes);
|
|
}
|