menu
pathfinding package
documentation
core/node.dart
Node
Node constructor
Node constructor
dark_mode
light_mode
Node
constructor
Node
(
int
?
x
,
int
?
y
, [
dynamic
walkable
])
Implementation
Node(this.x, this.y, [walkable]) { this.walkable = (walkable == null ? true : walkable); }
pathfinding package
documentation
core/node
Node
Node constructor
Node class