Script for when archway rebuild is done (#739)

This commit is contained in:
Aaron Kimbrell
2022-08-18 15:33:32 -05:00
committed by GitHub
parent e4a15a0f2e
commit f8c1e2fb52
4 changed files with 23 additions and 0 deletions

10
dScripts/GfArchway.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "CppScripts.h"
class GfArchway : public CppScripts::Script {
public:
void OnRebuildComplete(Entity* self, Entity* target) override;
private:
const uint32_t SHIELDING_SKILL = 863;
const uint32_t SHIELDING_BEHAVIOR = 3788;
};