1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00
OpenMW/apps/openmw/mwmechanics/aistatefwd.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
308 B
C++
Raw Normal View History

#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