This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
space-war/include/game/init_info.hpp

14 lines
179 B
C++
Raw Normal View History

2022-02-15 22:50:31 +08:00
#pragma once
enum PlaneType {
FreightShip = 1,
FightShip,
};
struct GameInitInfo {
int planeType;
int groupNum;
2022-02-17 16:54:05 +08:00
int fightShipNum;
int freightShipNum;
2022-02-15 22:50:31 +08:00
};