選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
195 B

  1. #![allow(dead_code)]
  2. use specs::Entity;
  3. pub struct PlayerState {
  4. pub player_id: Entity,
  5. }
  6. impl PlayerState {
  7. pub fn new(player_id: Entity) -> Self {
  8. Self { player_id }
  9. }
  10. }