mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
8 lines
173 B
C++
8 lines
173 B
C++
|
#include "CollectibleComponent.h"
|
||
|
|
||
|
#include "Entity.h"
|
||
|
|
||
|
void CollectibleComponent::Startup() {
|
||
|
m_CollectibleId = GetParentEntity()->GetVarAs<int32_t>(u"collectible_id");
|
||
|
}
|