Changes
Page history
Make abstract
authored
Sep 01, 2020
by
Nicolas Lenz
Show whitespace changes
Inline
Side-by-side
model/program-structure.md
View page @
36ca4393
...
...
@@ -34,8 +34,8 @@ package action {
Action <|.... Cancel
interface Action {
+ apply(game : Game) : Either<String, Game>
+ getTimestamp() : LocalDateTime
+
{abstract}
apply(game : Game) : Either<String, Game>
+
{abstract}
getTimestamp() : LocalDateTime
}
note left
A player action.
...
...
...
...