32 lines
567 B
C++
32 lines
567 B
C++
|
|
#ifndef _ARTIFICED_MENTAL_PHENOMENON_H
|
||
|
|
#define _ARTIFICED_MENTAL_PHENOMENON_H
|
||
|
|
|
||
|
|
#include "implexa.h"
|
||
|
|
|
||
|
|
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
|