Advertisement
yumetodo

for_YSRKEN_kammusu

Feb 26th, 2016
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.78 KB | None | 0 0
  1. Kammusu::Kammusu(
  2.     const int id, std::string name, ShipClass shipclass, const int max_hp, const int defence,
  3.     const int attack, const int torpedo, const int anti_air, const int luck, Speed speed,
  4.     Range range, const int slots, vector<int> max_airs, const int evade, const int anti_sub,
  5.     const int search, vector<int> first_weapons, const bool kammusu_flg, const int level
  6. )
  7. : id_(id), name_(std::move(name)), shipclass_(std::move(shipclass)), max_hp_(max_hp), defence_(defence),
  8.     attack_(attack), torpedo_(torpedo), anti_air_(anti_air), luck_(luck), speed_(std::move(speed)),
  9.     range_(std::move(range)), slots_(slots), max_airs_(std::move(max_airs)), evade_(evade), anti_sub_(anti_sub),
  10.     search_(search), first_weapons_(std::move(first_weapons)), kammusu_flg_(kammusu_flg), level_(level)
  11. {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement