Skip to content

Commit

Permalink
Fix wrong main class in build config of bgw-net protocol client
Browse files Browse the repository at this point in the history
  • Loading branch information
snaujokat committed Aug 25, 2022
1 parent 29be5ee commit d5f7286
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ All notable changes to this project will be documented in this file.
- Spectator join feature in bgw-net.
- PasswordField.

### Fixed
- Wrong main class in build config of bgw-net protocol client

## [0.7.2] - 14.08.2022

### Added
Expand Down
2 changes: 1 addition & 1 deletion bgw-net/bgw-net-protocol-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ dependencies {
implementation(project(":bgw-net:bgw-net-client"))
}

application { mainClass.set("tools.aqua.bgw.examples.tetris.main.MainKt") }
application { mainClass.set("tools.aqua.bgw.net.protocol.client.main.MainKt") }
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ConnectionScene : BoardGameScene(height = 800, width = 500, background = C
posY = 50,
height = 40,
width = width - 100,
text = "sopra.cs.tu-dortmund.de:80/bgw-net/connect",
text = "",
prompt = "Server address")

/** [TextField] for the network secret. */
Expand Down

0 comments on commit d5f7286

Please sign in to comment.