Elin Modding Docs Doc
All Classes Namespaces
WeightCell.cs
1using System;
2
3namespace Algorithms
4{
5 // Token: 0x02000759 RID: 1881
6 public class WeightCell
7 {
8 // Token: 0x0600366A RID: 13930 RVA: 0x00127E3A File Offset: 0x0012603A
9 public virtual bool IsPathBlocked(PathManager.MoveType moveType)
10 {
11 return this.blocked;
12 }
13
14 // Token: 0x04001CE3 RID: 7395
15 public bool blocked;
16
17 // Token: 0x04001CE4 RID: 7396
18 public byte[] weights = new byte[4];
19
20 // Token: 0x04001CE5 RID: 7397
21 public byte baseWeight;
22 }
23}