1 2 3 4 5 6 7 8
use crate::UserKey; #[derive(Copy, Clone, PartialEq, Eq)] pub enum EntityOwner { Server, Client(UserKey), Local, }