add stun immunity script (#1015)

several summons use this script to be immune to stuns
This commit is contained in:
Aaron Kimbrell
2023-03-08 07:31:45 -06:00
committed by GitHub
parent 49047a267b
commit ff0336793c
4 changed files with 30 additions and 1 deletions

View File

@ -0,0 +1,6 @@
#pragma once
#include "CppScripts.h"
class StunImmunity : public CppScripts::Script {
void OnStartup(Entity* self) override;
};