Player

The player struct probably shouldn't be modified by plugins, in any case, here's the struct definition:

#![allow(unused)]
fn main() {
struct Player {
  id: u8,
};
}