Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
PersistentDamageEffect.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12class PersistentDamageEffect: SCR_DamageEffect
13{
18 proto external void Terminate();
23 proto external void SetActive(bool value);
28 proto external bool IsActive();
29
30 // callbacks
31
32 //On frame logic for the persistent damage effect. Will only be called if active
33 event void EOnFrame(float timeSlice, SCR_ExtendedDamageManagerComponent dmgManager);
37 event bool SaveApplyEffect(ScriptBitWriter w) { return true; };
41 event bool LoadApplyEffect(ScriptBitReader r) { return true; };
42}
43