Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ShippingResult Class Reference
Inheritance diagram for ShippingResult:
EClass

Classes

class  Item
 

Public Member Functions

int GetIncome ()
 

Public Attributes

long[] ints = new long[10]
 
List< Itemitems = new List<Item>()
 

Properties

long total [get, set]
 
int rawDate [get, set]
 
int uidZone [get, set]
 
int hearthLv [get, set]
 
int hearthExp [get, set]
 
int hearthExpGained [get, set]
 
int debt [get, set]
 
- Properties inherited from EClass
static Game game [get]
 
static bool AdvMode [get]
 
static Player player [get]
 
static Chara pc [get]
 
static UI ui [get]
 
static Map _map [get]
 
static Zone _zone [get]
 
static FactionBranch Branch [get]
 
static FactionBranch BranchOrHomeBranch [get]
 
static Faction Home [get]
 
static Faction Wilds [get]
 
static Scene scene [get]
 
static BaseGameScreen screen [get]
 
static GameSetting setting [get]
 
static GameData gamedata [get]
 
static ColorProfile Colors [get]
 
static World world [get]
 
static SourceManager sources [get]
 
static SourceManager editorSources [get]
 
static SoundManager Sound [get]
 
static CoreDebug debug [get]
 

Additional Inherited Members

- Static Public Member Functions inherited from EClass
static int rnd (int a)
 
static int curve (int a, int start, int step, int rate=75)
 
static int rndHalf (int a)
 
static float rndf (float a)
 
static int rndSqrt (int a)
 
static void Wait (float a, Card c)
 
static void Wait (float a, Point p)
 
static int Bigger (int a, int b)
 
static int Smaller (int a, int b)
 
- Static Public Attributes inherited from EClass
static Core core
 

Detailed Description

Definition at line 4 of file ShippingResult.cs.

Member Function Documentation

◆ GetIncome()

int ShippingResult.GetIncome ( )
inline

Definition at line 126 of file ShippingResult.cs.

127 {
128 int num = 0;
129 foreach (Item item in items)
130 {
131 num += item.income;
132 }
133 return num;
134 }
List< Item > items

References item, and items.

Referenced by LayerShippingResult.Refresh().

Member Data Documentation

◆ ints

long [] ShippingResult.ints = new long[10]

Definition at line 37 of file ShippingResult.cs.

◆ items

List<Item> ShippingResult.items = new List<Item>()

Definition at line 40 of file ShippingResult.cs.

Referenced by GetIncome(), and LayerShippingResult.Show().

Property Documentation

◆ debt

int ShippingResult.debt
getset

Definition at line 114 of file ShippingResult.cs.

115 {
116 get
117 {
118 return (int)ints[6];
119 }
120 set
121 {
122 ints[6] = value;
123 }
124 }

Referenced by LayerShippingResult.Refresh().

◆ hearthExp

int ShippingResult.hearthExp
getset

Definition at line 90 of file ShippingResult.cs.

91 {
92 get
93 {
94 return (int)ints[4];
95 }
96 set
97 {
98 ints[4] = value;
99 }
100 }

◆ hearthExpGained

int ShippingResult.hearthExpGained
getset

Definition at line 102 of file ShippingResult.cs.

103 {
104 get
105 {
106 return (int)ints[5];
107 }
108 set
109 {
110 ints[5] = value;
111 }
112 }

◆ hearthLv

int ShippingResult.hearthLv
getset

Definition at line 78 of file ShippingResult.cs.

79 {
80 get
81 {
82 return (int)ints[3];
83 }
84 set
85 {
86 ints[3] = value;
87 }
88 }

Referenced by LayerShippingResult.Refresh().

◆ rawDate

int ShippingResult.rawDate
getset

Definition at line 54 of file ShippingResult.cs.

55 {
56 get
57 {
58 return (int)ints[1];
59 }
60 set
61 {
62 ints[1] = value;
63 }
64 }

Referenced by LayerShippingResult.Show().

◆ total

long ShippingResult.total
getset

Definition at line 42 of file ShippingResult.cs.

43 {
44 get
45 {
46 return ints[0];
47 }
48 set
49 {
50 ints[0] = value;
51 }
52 }

Referenced by LayerShippingResult.Refresh().

◆ uidZone

int ShippingResult.uidZone
getset

Definition at line 66 of file ShippingResult.cs.

67 {
68 get
69 {
70 return (int)ints[2];
71 }
72 set
73 {
74 ints[2] = value;
75 }
76 }

Referenced by LayerShippingResult.Refresh(), and LayerShippingResult.Show().


The documentation for this class was generated from the following file: