mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-31 14:07:35 +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
|
// Just count them for now
|
||||||
int count;
|
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)
|
void load(ESMReader &esm)
|
||||||
{
|
{
|
||||||
count++;
|
count++;
|
||||||
|
|
Loading…
Reference in a new issue