mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-27 08:06:25 +00:00
15 lines
156 B
C++
15 lines
156 B
C++
#pragma once
|
|
#include <map>
|
|
#include <string>
|
|
#include <Windows.h>
|
|
|
|
namespace DTO
|
|
{
|
|
|
|
class NamesDTO
|
|
{
|
|
public:
|
|
std::map<byte, std::string> Names;
|
|
};
|
|
|
|
} |