DragonNest/Server/ServiceManagerEx/PatchInfo.h
2024-12-19 09:48:26 +08:00

13 lines
No EOL
105 B
C

#pragma once
enum PatchTarget
{
Exe,
Full
};
struct PatchInfo
{
wstring url;
PatchTarget target;
};