Elin Decompiled Documentation
EA 23.102 Nightly
Loading...
Searching...
No Matches
PartyManager.cs
Go to the documentation of this file.
1
using
System.Collections.Generic;
2
using
Newtonsoft.Json;
3
4
public
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
}
Chara
Definition:
Chara.cs:10
EClass
Definition:
EClass.cs:5
PartyManager
Definition:
PartyManager.cs:5
PartyManager.Create
Party Create(Chara leader)
Definition:
PartyManager.cs:9
PartyManager.list
List< Party > list
Definition:
PartyManager.cs:7
Party
Definition:
Party.cs:6
Party.AddMemeber
void AddMemeber(Chara c, bool showMsg=false)
Definition:
Party.cs:51
Party.SetLeader
void SetLeader(Chara c)
Definition:
Party.cs:111
Elin
PartyManager.cs
Generated by
1.9.6