diff options
author | Joffrey Bion <joffrey.bion@gmail.com> | 2021-02-23 18:53:26 +0100 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2021-02-23 18:53:26 +0100 |
commit | f20ce87d6ef4ec77b966c0f76ec07c8bcad75907 (patch) | |
tree | e7a2acb77cba96a06d0258ccbddb0a5915c58bca | |
parent | Use proper sealed class for TurnActions (diff) | |
download | seven-wonders-f20ce87d6ef4ec77b966c0f76ec07c8bcad75907.tar.gz seven-wonders-f20ce87d6ef4ec77b966c0f76ec07c8bcad75907.tar.bz2 seven-wonders-f20ce87d6ef4ec77b966c0f76ec07c8bcad75907.zip |
Add comment for public element that shouldn't be
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt index ead54e96..df5c483d 100644 --- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt +++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt @@ -9,7 +9,7 @@ import org.luxons.sevenwonders.model.resources.noTransactions data class PlayedMove( val playerIndex: Int, val type: MoveType, - val card: TableCard, + val card: TableCard, // For UPGRADE_WONDER and DISCARD, this shouldn't be sent to everyone val transactions: ResourceTransactions, ) |