1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Convert custom HeadSpin integer types to standard types from stdint.h

This commit is contained in:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -103,7 +103,7 @@ enum {
// Message parameters
//========================================================================
struct TTT_CreateParam {
byte playerCount; // 1 or 2
uint8_t playerCount; // 1 or 2
};
//========================================================================
@ -112,8 +112,8 @@ enum {
// Cli2Srv
struct Cli2Srv_TTT_MakeMove : GameMsgHeader {
byte row; // 1..3
byte col; // 1..3
uint8_t row; // 1..3
uint8_t col; // 1..3
};
// Srv2Cli
@ -122,12 +122,12 @@ enum {
};
struct Srv2Cli_TTT_GameOver : GameMsgHeader {
ETTTGameResult result;
dword winnerId;
uint32_t winnerId;
};
struct Srv2Cli_TTT_MoveMade : GameMsgHeader {
dword playerId;
byte row; // 1..3
byte col; // 1..3
uint32_t playerId;
uint8_t row; // 1..3
uint8_t col; // 1..3
};
//============================================================================