Elin Modding Docs Doc
Loading...
Searching...
No Matches
Currency.cs
1
using
System;
2
3
// Token: 0x02000485 RID: 1157
4
public
class
Currency
5
{
6
// Token: 0x06001FD6 RID: 8150 RVA: 0x000B2E2C File Offset: 0x000B102C
7
public
static
string
ToID(CurrencyType currency)
8
{
9
switch
(currency)
10
{
11
case
CurrencyType.Medal:
12
return
"medal"
;
13
case
CurrencyType.Plat:
14
return
"plat"
;
15
case
CurrencyType.Ecopo:
16
return
"ecopo"
;
17
case
CurrencyType.Money2:
18
return
"money2"
;
19
case
CurrencyType.Influence:
20
return
"influence"
;
21
case
CurrencyType.Casino_coin:
22
return
"casino_coin"
;
23
}
24
return
"money"
;
25
}
26
}
Currency
Definition
Currency.cs:5
Elin
Currency.cs
Generated by
1.12.0