mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
2abcb142ad
- Pass componentID to activity component constructor - use int componentid so -1 can denote no component
8 lines
194 B
C++
8 lines
194 B
C++
|
|
#include "Entity.h"
|
|
#include "MinigameControlComponent.h"
|
|
|
|
MinigameControlComponent::MinigameControlComponent(Entity* parent, int32_t componentId) : ActivityComponent(parent, componentId) {
|
|
|
|
}
|