Players can now see eachother's nanos. (#28)

This commit is contained in:
dongresource
2020-08-23 02:52:54 +02:00
committed by GitHub
parent c9bf3d1896
commit 6129c0b4e2
3 changed files with 38 additions and 7 deletions

View File

@@ -14,10 +14,12 @@ struct Player {
int level;
int HP;
int slot;
int slot; // player slot, not nano slot
sPCStyle PCStyle;
sPCStyle2 PCStyle2;
sNano Nanos[37];
int equippedNanos[3];
int nano; // active nano (index into Nanos)
int x, y, z, angle;
sItemBase Equip[AEQUIP_COUNT];
@@ -25,4 +27,4 @@ struct Player {
bool IsGM;
};
#endif
#endif