mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Use STL containers instead of irr::core::list
This commit is contained in:
parent
1cc1c56234
commit
f1e4a671dc
8 changed files with 9 additions and 12 deletions
|
@ -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() {};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue