mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-26 23:56:23 +00:00
21 lines
286 B
C++
21 lines
286 B
C++
#pragma once
|
|
|
|
namespace DTO
|
|
{
|
|
|
|
class NetworkDTO
|
|
{
|
|
public:
|
|
short SerializationRate;
|
|
short TargetFPS;
|
|
short SleepMultiplier;
|
|
bool isLocalTest;
|
|
bool isCharacterSpawn;
|
|
bool DisplayNames;
|
|
short GlyphDistance;
|
|
short GlyphTime;
|
|
bool isQuestSync;
|
|
bool isEnemySync;
|
|
};
|
|
|
|
} |