DarkflameServer/dScripts/ClRing.cpp
EmosewaMC dc53c45d65 C Scripts and remove unneeded includes from base cppscripts header
Remove the MissionComponent and Loot includes from all base scripts and place their needed includes in the respective scripts.
2022-06-22 22:19:49 -07:00

7 lines
125 B
C++

#include "ClRing.h"
void ClRing::OnCollisionPhantom(Entity* self, Entity* target)
{
self->Smash(target->GetObjectID());
}