Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
Gross.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.InteropServices;
3using Newtonsoft.Json;
4
5public class Gross : EClass
6{
7 [StructLayout(LayoutKind.Sequential, Size = 1)]
8 public struct Mod
9 {
10 }
11
12 [JsonProperty]
13 public int value;
14
15 public virtual int Refresh()
16 {
17 return value;
18 }
19
20 public virtual List<Mod> GetMods()
21 {
22 return new List<Mod>();
23 }
24}
Definition: EClass.cs:5
Definition: Gross.cs:6
int value
Definition: Gross.cs:13
virtual int Refresh()
Definition: Gross.cs:15
virtual List< Mod > GetMods()
Definition: Gross.cs:20