Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
PartyManager.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using Newtonsoft.Json;
3
4public class PartyManager : EClass
5{
6 [JsonProperty]
7 public List<Party> list = new List<Party>();
8
9 public Party Create(Chara leader)
10 {
11 Party party = new Party();
12 list.Add(party);
13 party.AddMemeber(leader);
14 party.SetLeader(leader);
15 return party;
16 }
17}
Definition: Chara.cs:10
Definition: EClass.cs:5
Party Create(Chara leader)
Definition: PartyManager.cs:9
List< Party > list
Definition: PartyManager.cs:7
Definition: Party.cs:6
void AddMemeber(Chara c, bool showMsg=false)
Definition: Party.cs:51
void SetLeader(Chara c)
Definition: Party.cs:111