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.
|
#pragma once
|
|
|
|
enum PlaneType {
|
|
FreightShip = 1,
|
|
FightShip,
|
|
};
|
|
|
|
struct GameInitInfo {
|
|
int planeType;
|
|
int groupNum;
|
|
int planeNum;
|
|
};
|