New class: Singlecept. Inherits from MentalEntity

This commit is contained in:
2025-01-04 13:38:27 -04:00
parent 9e5ea0d78c
commit 89c8936e64
+19
View File
@@ -0,0 +1,19 @@
#ifndef _SINGLECEPT_H
#define _SINGLECEPT_H
#include <mentalEntity.h>
#include <implix/implix.h>
class Singlecept
: public MentalEntity
{
public:
Singlecept() = default;
~Singlecept() = default;
Singlecept(const implix::Implix&) {
// Conversion logic from Implix to Singlecept
}
};
#endif