Elin Decompiled Documentation
EA 23.179 Nightly
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
Files
File List
File Members
All
$
a
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
z
Functions
Variables
Enumerations
a
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
z
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Pages
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:56
Party.SetLeader
void SetLeader(Chara c)
Definition:
Party.cs:116
Elin
PartyManager.cs
Generated by
1.9.6