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

13 行
281 B

  1. use space_crush_common::components::ShipCount;
  2. use specs::{hibitset::BitSet, Component, HashMapStorage};
  3. #[derive(Default, Debug)]
  4. pub struct FleetInfo {
  5. pub owned: BitSet,
  6. pub count: ShipCount,
  7. }
  8. impl Component for FleetInfo {
  9. type Storage = HashMapStorage<Self>;
  10. }