mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
12 lines
138 B
C++
12 lines
138 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace DataTypes
|
|
{
|
|
class CharacterLocation
|
|
{
|
|
public:
|
|
std::string Map;
|
|
std::string Section;
|
|
};
|
|
} |