diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-09-08 20:07:45 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-09-08 20:07:45 +0200 |
commit | 2c945c8818a19405c566be1fcb6367a69b0a60c8 (patch) | |
tree | a73ea2eade1e6eae4313b442cba584681fceb18b /src/Blocks/WorldInterface.h | |
parent | Fixed a few compile warnings (diff) | |
download | cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar.gz cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar.bz2 cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar.lz cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar.xz cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.tar.zst cuberite-2c945c8818a19405c566be1fcb6367a69b0a60c8.zip |
Diffstat (limited to 'src/Blocks/WorldInterface.h')
-rw-r--r-- | src/Blocks/WorldInterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h index d1c6f9bfc..b43d011d8 100644 --- a/src/Blocks/WorldInterface.h +++ b/src/Blocks/WorldInterface.h @@ -17,7 +17,7 @@ class cWorldInterface public: virtual ~cWorldInterface() {} - virtual Int64 GetTimeOfDay(void) const = 0; + virtual int GetTimeOfDay(void) const = 0; virtual Int64 GetWorldAge(void) const = 0; virtual eDimension GetDimension(void) const = 0; @@ -44,7 +44,7 @@ public: /** Calls the callback for each player in the list; returns true if all players processed, false if the callback aborted by returning true */ virtual bool ForEachPlayer(cItemCallback<cPlayer> & a_Callback) = 0; - virtual void SetTimeOfDay(Int64 a_TimeOfDay) = 0; + virtual void SetTimeOfDay(int a_TimeOfDay) = 0; /** Returns true if it is raining, stormy or snowing at the specified location. This takes into account biomes. */ virtual bool IsWeatherWetAt(int a_BlockX, int a_BlockZ) = 0; |