NetrexMC / RakNet

RakNet implementation in Rust
Apache License 2.0
44 stars 12 forks source link

Implement Clone for Client & Connection #61

Closed mikhaillav closed 6 months ago

mikhaillav commented 6 months ago

Sorry, im new in rust, maybe this is not greatest way to do this. But still

mikhaillav commented 6 months ago

I don't think this and this changes are required (probably I forked outdated version)

AndreasHGK commented 6 months ago

Why would you want to imlement Clone on these?

mikhaillav commented 6 months ago

Using in different threads for example

theaddonn commented 6 months ago

This is really useful for espacilly me, I am having a recv loop in one thread and a sender in a hashmap for the clients... Thx!