From 976e66abb95507602e49487fc08e2ac9d2be51d6 Mon Sep 17 00:00:00 2001 From: melvin Date: Thu, 16 Jun 2011 20:48:53 +0800 Subject: [PATCH] moved comments to before the enum --- src/magic/model/phase/MagicStep.java | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/magic/model/phase/MagicStep.java b/src/magic/model/phase/MagicStep.java index 6b371ff6af..2038b512bf 100644 --- a/src/magic/model/phase/MagicStep.java +++ b/src/magic/model/phase/MagicStep.java @@ -1,10 +1,20 @@ package magic.model.phase; public enum MagicStep { - - Begin, /** Begin of each phase */ - ActivePlayer, /** Let active player play spells until pass. */ - OtherPlayer, /** Let other player play spells until pass. If spells were played, go back to ActivePlayer. */ - Resolve, /** If stack is empty, go to StackResolved. Otherwise resolve top spell of stack and go back to ActivePlayer. */ - NextPhase, /** Go to the next phase. */ -} \ No newline at end of file + /** Begin of each phase */ + Begin, + + /** Let active player play spells until pass. */ + ActivePlayer, + + /** Let other player play spells until pass. If spells were played, go back + * to ActivePlayer. */ + OtherPlayer, + + /** If stack is empty, go to StackResolved. Otherwise resolve top spell of + * stack and go back to ActivePlayer. */ + Resolve, + + /** Go to the next phase. */ + NextPhase, +}