From 34a0c9278b952ce862cdb133da7adf126124df2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Mon, 27 May 2024 11:41:53 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20de=20Operation=20et=20de=20la=20co?= =?UTF-8?q?nsole=20de=20l'autre=20R=C3=A9mi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/Trek-12/Models/Game/Operation.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Trek-12/Models/Game/Operation.cs b/source/Trek-12/Models/Game/Operation.cs index 2eca1fe..c793b52 100644 --- a/source/Trek-12/Models/Game/Operation.cs +++ b/source/Trek-12/Models/Game/Operation.cs @@ -11,10 +11,10 @@ namespace Models.Game /// public enum Operation { - LOWER, - HIGHER, - SUBTRACTION, ADDITION, - MULTIPLICATION + SUBTRACTION, + MULTIPLICATION, + LOWER, + HIGHER } }