UNPKG

bp-prism-game

Version:
22 lines (21 loc) 281 B
/** * The Alien Path Direction Enum */ export declare enum AlienPathDirectionEnum { /** * North */ north = "north", /** * East */ east = "east", /** * West */ west = "west", /** * South */ south = "south" }