-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Network thread fully working. Add korangar_networking crate.
- Loading branch information
Showing
9 changed files
with
1,458 additions
and
693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Ragnarok Interface | ||
# Korangar Interface | ||
|
||
A crate that exposes a UI that can be used to display Ragnarok Online windows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "korangar_networking" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
ragnarok_bytes = { workspace = true } | ||
ragnarok_networking = { workspace = true } | ||
korangar_debug = { workspace = true, optional = true } | ||
tokio = { version = "1.37", features = ["full"] } | ||
|
||
[features] | ||
debug = ["korangar_debug"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Korangar Networking | ||
|
||
An opinionated wrapper around the `ragnarok_networking` crate. | ||
This crate exposes a networking system that can run in a seperate thread and maintain connections to the login, character, and map servers. |
Oops, something went wrong.