From b7fec57c0463e58f1ad8db126ff4879f59b057d0 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 6 Jan 2016 21:39:15 +0100 Subject: Start implementing input handling --- src/model/Direction.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/model') diff --git a/src/model/Direction.ts b/src/model/Direction.ts index a0cf45d..7f92588 100644 --- a/src/model/Direction.ts +++ b/src/model/Direction.ts @@ -8,6 +8,8 @@ export enum Direction { West }; -export function reverse(r: Direction): Direction { return (r+2) % 4; } +export module Direction { + export function reverse(r: Direction): Direction { return (r+2) % 4; } +} export default Direction; -- cgit v1.2.3