2025-08-13 16:06:34 -04:00
|
|
|
#ifndef _ARTIFICED_MENTAL_PHENOMENON_H
|
|
|
|
|
#define _ARTIFICED_MENTAL_PHENOMENON_H
|
|
|
|
|
|
2025-08-15 14:01:46 -04:00
|
|
|
#include <mentenon.h>
|
2025-08-13 16:06:34 -04:00
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
|
|
|
|
|
class FogArtificedMentalPhenomenon
|
|
|
|
|
: public ArtificedMentalPhenomenon
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef FogArtificedMentalPhenomenon Fogenon;
|
|
|
|
|
|
|
|
|
|
class IdyllicArtificedMentalPhenomenon
|
|
|
|
|
: public ArtificedMentalPhenomenon
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef IdyllicArtificedMentalPhenomenon Idyllenon;
|
|
|
|
|
|
|
|
|
|
class FantasyArtificedMentalPhenomenon
|
|
|
|
|
: public ArtificedMentalPhenomenon
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef FantasyArtificedMentalPhenomenon Fantanon;
|
|
|
|
|
|
|
|
|
|
} // namespace smo
|
|
|
|
|
|
|
|
|
|
#endif // _ARTIFICED_MENTAL_PHENOMENON_H
|