Elin Modding Docs Doc
Loading...
Searching...
No Matches
CritterRat.cs
1using System;
2
3// Token: 0x02000660 RID: 1632
4public class CritterRat : Critter
5{
6 // Token: 0x17000CFB RID: 3323
7 // (get) Token: 0x06002DD4 RID: 11732 RVA: 0x00100EA1 File Offset: 0x000FF0A1
8 public override int[] idleTiles
9 {
10 get
11 {
12 return CritterRat.I_TILE;
13 }
14 }
15
16 // Token: 0x17000CFC RID: 3324
17 // (get) Token: 0x06002DD5 RID: 11733 RVA: 0x00100EA8 File Offset: 0x000FF0A8
18 public override int[] animeTiles
19 {
20 get
21 {
22 return CritterRat.A_TILE;
23 }
24 }
25
26 // Token: 0x040019F4 RID: 6644
27 public static int[] I_TILE = new int[]
28 {
29 97
30 };
31
32 // Token: 0x040019F5 RID: 6645
33 public static int[] A_TILE = new int[]
34 {
35 96,
36 97
37 };
38}