2022-04-17 11:24:43 -04:00
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace SohUtils {
|
|
|
|
const std::string& GetSceneName(int32_t scene);
|
|
|
|
|
|
|
|
const std::string& GetItemName(int32_t item);
|
|
|
|
|
|
|
|
const std::string& GetQuestItemName(int32_t item);
|
2023-10-27 15:18:56 -04:00
|
|
|
|
|
|
|
// Copies a string and ensures the destination is null terminated if the source string is larger than size
|
|
|
|
// Only up to size-1 characters are copied from the source string
|
|
|
|
void CopyStringToCharArray(char* destination, std::string source, size_t size);
|
2022-04-17 11:24:43 -04:00
|
|
|
} // namespace SohUtils
|