17 lines
318 B
C++
17 lines
318 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "TangibleComponent.h"
|
|
#include "TangibleManager.h"
|
|
|
|
UTangibleComponent::UTangibleComponent()
|
|
{
|
|
}
|
|
|
|
void UTangibleComponent::Init(UTangibleManager* tm, AActor* a, int64 id)
|
|
{
|
|
TangibleManager = tm;
|
|
Actor = a;
|
|
TangibleId = id;
|
|
}
|