mirror of
https://github.com/celisej567/mcpe.git
synced 2025-12-31 17:49:17 +03:00
9 lines
154 B
C++
9 lines
154 B
C++
#pragma once
|
|
|
|
// Have to do this because GCC on 64-bit targets makes longs 64-bit.
|
|
#ifdef ORIGINAL_CODE
|
|
#define TLong long
|
|
#else
|
|
#define TLong int
|
|
#endif
|