mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-17 12:41:39 +00:00
12 lines
137 B
C++
12 lines
137 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace DTO
|
|
{
|
|
class QuestDTO
|
|
{
|
|
public:
|
|
std::vector<std::string> Completed;
|
|
};
|
|
} |