mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-20 19:39:41 +00:00
Test commit for openmw_commits twitter channel
This commit is contained in:
parent
0351b453db
commit
d9d16fc035
1 changed files with 13 additions and 0 deletions
|
@ -64,6 +64,19 @@ namespace ESMS
|
|||
// Just count them for now
|
||||
int count;
|
||||
|
||||
/*
|
||||
What to do here:
|
||||
|
||||
load() reads the appropriate records to determine if this is an
|
||||
interior or exterior cell. The old D code should be straight
|
||||
forward to port here. Unlike the lists above, this struct
|
||||
contains two lists, one for each cell type. We will have to hack
|
||||
around again to get good indexing of exterior cells, but I think
|
||||
a hash thingie like we did in D will work. An alternative is
|
||||
just a map<map<>>, so we can do ext_cells[X][Y].whatever. Hmm, I
|
||||
think I like that better actually.
|
||||
*/
|
||||
|
||||
void load(ESMReader &esm)
|
||||
{
|
||||
count++;
|
||||
|
|
Loading…
Reference in a new issue