mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
12 lines
226 B
Rust
12 lines
226 B
Rust
|
use specs::Entity as EcsEntity;
|
||
|
use common::{
|
||
|
msg::{ServerMsg, ClientMsg},
|
||
|
net::PostBox,
|
||
|
};
|
||
|
|
||
|
pub struct Client {
|
||
|
pub ecs_entity: EcsEntity,
|
||
|
pub postbox: PostBox<ServerMsg, ClientMsg>,
|
||
|
pub last_ping: f64,
|
||
|
}
|