It's a (currently (not as) broken) Clicker game written in rust. Currently trying to make It a multiplayer game. Send help - networking is P A I N
Find a file
VerbenaIDK f1a452f2ed Add networking things
Simple networking things

 - Internal protocol for networking thread (code that determines what
should be done with the recieved data)
 - Networking thread (the meat of the thing)
 - Functions to kill, debug and send data to the thread
 - That's all I think

To use this:
 First start the network thread with the function network() from net.rs
 That should start the thread and return a variable "tx" which is the
sender for the thread communication
 To use the networking thread, you must use one of the functions in
net.rs related to communication and you must input the necessary values,
the first value is ALWAYS the tx returned by the network() function and
WILL NOT work without it, so the network() function must be called and
within the same scope (where the tx variable containing the sender is)
you must use one of the communication functions

 To do (for Dan):
  - Networking implementation for the GUI
  - Server
  - Further expand things that the network thread does (if necessary)

 To do (for me):
  - Once GUI implementation is finished, properly test the changes
  - Probably will have to do debugging idk... suffering...

      - VerbenaIDK, yasmina :3
2024-12-19 15:12:08 -03:00
src Add networking things 2024-12-19 15:12:08 -03:00
to_be_implemented? Added portwhisper.rs 2024-12-18 22:27:33 +01:00
Cargo.lock Add files via upload 2024-12-17 12:20:28 +01:00
Cargo.toml Add files via upload 2024-12-17 12:20:28 +01:00
LICENSE Initial commit 2024-12-17 12:19:13 +01:00