DragonNest/Server/ServiceManagerEx/PatchInfo.h

13 lines
105 B
C
Raw Normal View History

2024-12-19 09:48:26 +08:00
#pragma once
enum PatchTarget
{
Exe,
Full
};
struct PatchInfo
{
wstring url;
PatchTarget target;
};