Correct struct to class in forward declarations

Fixes http://bugs.openmw.org/issues/362
This commit is contained in:
Michael Mc Donnell 2012-08-13 13:53:54 -04:00
parent 97c45455fd
commit b373d0ec7b
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ namespace MWRender
namespace MWMechanics namespace MWMechanics
{ {
struct CreatureStats; class CreatureStats;
class NpcStats; class NpcStats;
struct Movement; struct Movement;
} }

View file

@ -7,7 +7,7 @@
namespace MWMechanics namespace MWMechanics
{ {
struct NpcStats; class NpcStats;
} }
namespace MWWorld namespace MWWorld