cd4abe6007
- Add Signal class to ECS used to send signals/events into systems
11 lines
137 B
C++
11 lines
137 B
C++
#include "copium/ecs/Signal.h"
|
|
|
|
namespace Copium
|
|
{
|
|
int Signal::GetAllocatedId()
|
|
{
|
|
allocatedIds++;
|
|
return allocatedIds;
|
|
}
|
|
}
|