From 2399e733b4e9a69db61c484277ba9fd987e3cf50 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Wed, 9 Aug 2017 12:25:12 +0200 Subject: [PATCH] ressource: Fixed tictactoe --- bin/app/user/projects/tictactoe/src/field.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/app/user/projects/tictactoe/src/field.h b/bin/app/user/projects/tictactoe/src/field.h index 751cea18..c93ea640 100644 --- a/bin/app/user/projects/tictactoe/src/field.h +++ b/bin/app/user/projects/tictactoe/src/field.h @@ -26,14 +26,14 @@ public: void Show() const; - int SameInRow( Toen token, int amount ) const; + int SameInRow( Token token, int amount ) const; bool InRange( const Move& move ) const; bool IsEmpty( const Move& move ) const; bool IsFull() const; void MakeMove( const Move& move, Token token ); - void ClearMve( const Move& move ); + void ClearMove( const Move& move ); private: Token** grid_;