From 6fb554b8aeca9a8c51bab4b906a11fd401367611 Mon Sep 17 00:00:00 2001 From: Seabass Date: Sat, 5 Oct 2019 13:38:27 -0400 Subject: [PATCH] Make all of the union types have uniform ws --- src/Game/Library.fs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Game/Library.fs b/src/Game/Library.fs index 9cbac40..fb5c0d1 100644 --- a/src/Game/Library.fs +++ b/src/Game/Library.fs @@ -11,16 +11,16 @@ type WallType = | Corner type Direction = -| North -| South -| East -| West + | North + | South + | East + | West type Env = - | Wall of WallType - | Floor - | Trap - | Player + | Wall of WallType + | Floor + | Trap + | Player type Cast = { spell: string