mirror of
https://github.com/open-goal/jak-project
synced 2026-05-26 15:46:14 -04:00
27bb6c6384
* [decompiler] `defpart` and `defpartgroup` * support sounds in part defs natively * make `meters_to_string` * update refs * clang * make macros in pair only work inside `(unquote ...` * update source * update finish * fix
8 lines
276 B
C++
8 lines
276 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
std::string float_to_string(float value, bool append_trailing_decimal = true);
|
|
std::string meters_to_string(float value, bool append_trailing_decimal = false);
|
|
int float_to_cstr(float value, char* buffer, bool append_trailing_decimal = true);
|