32 lines
554 B
C++
32 lines
554 B
C++
#ifndef _ARTIFICED_MENTAL_PHENOMENON_H
|
|
#define _ARTIFICED_MENTAL_PHENOMENON_H
|
|
|
|
#include "implexa.h"
|
|
|
|
namespace smo {
|
|
|
|
class FogArtificedMentalPhenomenon
|
|
: public ArtificedMentalPhenomenon
|
|
{
|
|
};
|
|
|
|
typedef FogArtificedMentalPhenomenon Fogen, Fogena;
|
|
|
|
class IdyllicArtificedMentalPhenomenon
|
|
: public ArtificedMentalPhenomenon
|
|
{
|
|
};
|
|
|
|
typedef IdyllicArtificedMentalPhenomenon Idyllen, Idyllena;
|
|
|
|
class FantasyArtificedMentalPhenomenon
|
|
: public ArtificedMentalPhenomenon
|
|
{
|
|
};
|
|
|
|
typedef FantasyArtificedMentalPhenomenon Fantan, Fantana;
|
|
|
|
} // namespace smo
|
|
|
|
#endif
|