Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
PropSetCategory.cs
Go to the documentation of this file.
1public class PropSetCategory : PropSet
2{
4
6
7 public int sum;
8
9 public override void ModNum(int a)
10 {
11 num += a;
12 ModSum(a);
13 }
14
15 public void ModSum(int a)
16 {
17 if (parent != null)
18 {
19 parent.ModSum(a);
20 }
21 sum += a;
22 }
23}
PropSetCategory parent
void ModSum(int a)
override void ModNum(int a)
SourceCategory.Row source
int num
Definition: PropSet.cs:5