32 lines
562 B
C++
32 lines
562 B
C++
|
|
#ifndef _ARTIFICED_MENTAL_EXISTENT_H
|
||
|
|
#define _ARTIFICED_MENTAL_EXISTENT_H
|
||
|
|
|
||
|
|
#include "mentalExistent.h"
|
||
|
|
|
||
|
|
namespace smo {
|
||
|
|
|
||
|
|
class FogArtificedMentalExistent
|
||
|
|
: public ArtificedMentalExistent
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef FogArtificedMentalExistent Fogaxent, FogArtixent;
|
||
|
|
|
||
|
|
class IdyllicArtificedMentalExistent
|
||
|
|
: public ArtificedMentalExistent
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef IdyllicArtificedMentalExistent Idyllixent, IdyllArtixent;
|
||
|
|
|
||
|
|
class FantasyArtificedMentalExistent
|
||
|
|
: public ArtificedMentalExistent
|
||
|
|
{
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef FantasyArtificedMentalExistent Fantaxent, FanArtixent;
|
||
|
|
|
||
|
|
} // namespace smo
|
||
|
|
|
||
|
|
#endif
|