New class hk::Implix replaces Existent

This commit is contained in:
2025-01-04 11:47:55 -04:00
parent 6ae037c7e7
commit 0468046692
2 changed files with 17 additions and 11 deletions
-11
View File
@@ -1,11 +0,0 @@
#ifndef _EXISTENT_H
#define _EXISTENT_H
#include <mentalEntity.h>
class Existent
: public MentalEntity
{
};
#endif
+17
View File
@@ -0,0 +1,17 @@
#ifndef IMPLIX_H
#define IMPLIX_H
namespace hk {
namespace implix {
class Implix
{
public:
Implix() = default;
~Implix() = default;
};
} // namespace implix
} // namespace hk
#endif // IMPLIX_H