Skip to content

Instantly share code, notes, and snippets.

# Credit for this: Nicholas Swift
# as found at https://medium.com/@nicholas.w.swift/easy-a-star-pathfinding-7e6689c7f7b2
from warnings import warn
class Node:
"""
A node class for A* Pathfinding
"""
def __init__(self, parent=None, position=None):