moved comments to before the enum
parent
ea0703f5cb
commit
976e66abb9
|
@ -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. */
|
||||
}
|
||||
/** 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,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue