Revert "Get rid of MSVC's __int64"

This reverts commit d63f79325f.
This commit is contained in:
void_17
2026-03-02 17:39:35 +07:00
parent 119bff3514
commit b9a2951901
308 changed files with 5368 additions and 5360 deletions

View File

@@ -11,22 +11,22 @@ class LevelType;
class Layer
{
private:
int64_t seed;
__int64 seed;
protected:
shared_ptr<Layer>parent;
private:
int64_t rval;
int64_t seedMixup;
__int64 rval;
__int64 seedMixup;
public:
static LayerArray getDefaultLayers(int64_t seed, LevelType *levelType);
static LayerArray getDefaultLayers(__int64 seed, LevelType *levelType);
Layer(int64_t seedMixup);
Layer(__int64 seedMixup);
virtual void init(int64_t seed);
virtual void initRandom(int64_t x, int64_t y);
virtual void init(__int64 seed);
virtual void initRandom(__int64 x, __int64 y);
protected:
int nextRandom(int max);