Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ActList.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
3public class ActList : EClass
4{
5 public class Item
6 {
7 public Act act;
8
9 public int chance;
10
11 public bool pt;
12 }
13
14 public List<Item> items = new List<Item>();
15}
int chance
Definition: ActList.cs:9
bool pt
Definition: ActList.cs:11
Act act
Definition: ActList.cs:7
List< Item > items
Definition: ActList.cs:14
Definition: ACT.cs:62
Definition: EClass.cs:5