1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Replace usage of long long with u64/s64

This commit is contained in:
ShadowNinja 2014-03-12 19:37:19 -04:00
parent 7cac34c807
commit 18577f2527
7 changed files with 16 additions and 13 deletions

View file

@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <list>
#include "irr_v3d.h"
#include "irrlichttypes.h"
class MapBlock;
@ -33,8 +34,8 @@ public:
virtual void saveBlock(MapBlock *block)=0;
virtual MapBlock* loadBlock(v3s16 blockpos)=0;
long long getBlockAsInteger(const v3s16 pos);
v3s16 getIntegerAsBlock(long long i);
s64 getBlockAsInteger(const v3s16 pos);
v3s16 getIntegerAsBlock(s64 i);
virtual void listAllLoadableBlocks(std::list<v3s16> &dst)=0;
virtual int Initialized(void)=0;
virtual ~Database() {};