export enum GridCollisionClass {
  NONE = 0,
  PIT = 1,
  OBJECT = 2,
  SOLID = 3,
  WALL = 4,
  WALL_EXCEPT_PLAYER = 5,
}
