doukutsu-rs/src/player/player_list.rs

14 lines
171 B
Rust
Raw Normal View History

2021-10-14 04:54:11 +00:00
use crate::player::Player;
pub struct RemotePlayerList {
}
impl RemotePlayerList {
pub fn new() -> RemotePlayerList {
RemotePlayerList {
}
}
}