R-TYPE
IComp.hpp
Go to the documentation of this file.
1 #ifndef _ICOMP
2 #define _ICOMP
3 
4 // valgrind --tool=cachegrind ./exec
5 
6 namespace ECS {
7 class IComp {
8 public:
9  virtual ~IComp() noexcept = default;
10 };
11 };
12 
13 #endif
Definition: IComp.hpp:7
virtual ~IComp() noexcept=default
Definition: ComponentManager.hpp:14