Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
PersistenceConfigRule.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12class PersistenceConfigRule: ScriptAndConfig
13{
15 private void PersistenceConfigRule();
16
17 proto external int GetNativeTypePriority();
18 proto external int NativeCompare(const PersistenceConfigRule other);
19 proto external bool IsNativeMatch(const IEntity entity);
20
21 // callbacks
22
24 event protected int GetTypePriority() { return GetNativeTypePriority(); };
26 event protected int Compare(const PersistenceConfigRule other) { return NativeCompare(other); };
27 event protected bool IsMatch(const IEntity entity) { return IsNativeMatch(entity); };
28}
29
bool IsMatch(const IEntity entity)
int GetTypePriority()
Fixed rule priority. Used to e.g. prioritze prefab over entity class if nothing else was configured....
int Compare(const PersistenceConfigRule other)
If the other rule has the same priority, then the details of the instance may be compared to break th...