mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 03:25:07 -05:00
12 lines
256 B
C++
12 lines
256 B
C++
#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);
|
|
} // namespace SohUtils
|