mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-23 20:09:46 +03:00
Mac OS X 10.6 & More C++03 Support (#68)
* Mac OS X 10.6 & More C++03 Support * Fix SDL2 options.txt loading for C++03 --------- Co-authored-by: Brent Da Mage <BrentDaMage@users.noreply.github.com>
This commit is contained in:
@@ -19,7 +19,10 @@ class NetEventCallback;
|
||||
class Level;
|
||||
class LevelChunk;
|
||||
|
||||
enum ePacketType : uint8_t
|
||||
enum ePacketType
|
||||
#ifndef USE_OLD_CPP
|
||||
: uint8_t
|
||||
#endif
|
||||
{
|
||||
PACKET_LOGIN = ID_USER_PACKET_ENUM,
|
||||
PACKET_MESSAGE,
|
||||
|
||||
Reference in New Issue
Block a user