veloren/common/src/comp/admin.rs

8 lines
132 B
Rust
Raw Normal View History

use specs::{Component, VecStorage};
pub struct AdminPerms;
impl Component for AdminPerms {
type Storage = VecStorage<Self>;
}