forked from teamnwah/openmw-tes3coop
Correct struct to class in forward declarations
Fixes http://bugs.openmw.org/issues/362
This commit is contained in:
parent
97c45455fd
commit
b373d0ec7b
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace MWRender
|
||||||
|
|
||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
{
|
{
|
||||||
struct CreatureStats;
|
class CreatureStats;
|
||||||
class NpcStats;
|
class NpcStats;
|
||||||
struct Movement;
|
struct Movement;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
{
|
{
|
||||||
struct NpcStats;
|
class NpcStats;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace MWWorld
|
namespace MWWorld
|
||||||
|
|
Loading…
Reference in a new issue