Rename hcore=>smocore

This commit is contained in:
2025-07-22 06:15:12 -04:00
parent 9c16aeeb55
commit 756571b9b4
54 changed files with 6 additions and 6 deletions
+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