Yosin_Game/SquirrelActor.cpp

15 lines
193 B
C++
Raw Permalink Normal View History

2024-05-04 18:30:32 +08:00
#include "SquirrelActor.h"
extern SquirrelClassEx* TObject;
SquirrelActor::SquirrelActor(std::string gActorName)
{
ActorName = gActorName;
}
void SquirrelActor::OnUpdate(Duration dt)
{
}