Files
salmanoff/core/include/concept.h
T
2024-09-08 01:04:41 +10:00

12 lines
115 B
C++

#ifndef _CONCEPT_H
#define _CONCEPT_H
#include <mentalEntity.h>
class Concept
: public MentalEntity
{
};
#endif