pub type PlayerId<'a> = Cow<'a, str>;
Players will get an ID that is unique within the agent context.
pub enum PlayerId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.