mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-18 13:12:50 +00:00
16 lines
308 B
C++
16 lines
308 B
C++
|
#ifndef OPENMW_MWMECHANICS_AISTATEFWD_H
|
||
|
#define OPENMW_MWMECHANICS_AISTATEFWD_H
|
||
|
|
||
|
namespace MWMechanics
|
||
|
{
|
||
|
template <class Base>
|
||
|
class DerivedClassStorage;
|
||
|
|
||
|
struct AiTemporaryBase;
|
||
|
|
||
|
/// \brief Container for AI package status.
|
||
|
using AiState = DerivedClassStorage<AiTemporaryBase>;
|
||
|
}
|
||
|
|
||
|
#endif
|