mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Use STL containers instead of irr::core::list
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
#include "main.h"
|
||||
#include "filesys.h"
|
||||
#include "serialization.h"
|
||||
#include <irrList.h>
|
||||
#include <list>
|
||||
|
||||
class Database;
|
||||
class ServerMap;
|
||||
@@ -23,7 +23,7 @@ public:
|
||||
virtual MapBlock* loadBlock(v3s16 blockpos)=0;
|
||||
long long getBlockAsInteger(const v3s16 pos);
|
||||
v3s16 getIntegerAsBlock(long long i);
|
||||
virtual void listAllLoadableBlocks(core::list<v3s16> &dst)=0;
|
||||
virtual void listAllLoadableBlocks(std::list<v3s16> &dst)=0;
|
||||
virtual int Initialized(void)=0;
|
||||
virtual ~Database() {};
|
||||
};
|
||||
|
Reference in New Issue
Block a user