GolemHelper/GolemHelper/Automation/AutomationLogic.h
2025-09-15 00:57:34 +02:00

12 lines
No EOL
320 B
C++

#pragma once
class AutomationLogic {
public:
static bool ShouldSkipBoonStep(int stepIndex);
static bool ShouldSkipGolemStep(int stepIndex);
static void ApplyBoons();
static void ApplyHealerBoons();
static void SpawnGolem();
static void RespawnGolem();
static void RemoveAndRespawnGolem();
};