Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
WeightCell.cs
Go to the documentation of this file.
1namespace Algorithms;
2
3public class WeightCell
4{
5 public bool blocked;
6
7 public byte[] weights = new byte[4];
8
9 public byte baseWeight;
10
11 public virtual bool IsPathBlocked(PathManager.MoveType moveType)
12 {
13 return blocked;
14 }
15}
virtual bool IsPathBlocked(PathManager.MoveType moveType)
Definition: WeightCell.cs:11