mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-27 17:16:31 +00:00
10 lines
214 B
C++
10 lines
214 B
C++
#include "WildAmbients.h"
|
|
#include "EntityManager.h"
|
|
#include "Character.h"
|
|
#include "GameMessages.h"
|
|
|
|
void WildAmbients::OnUse(Entity* self, Entity* user)
|
|
{
|
|
GameMessages::SendPlayAnimation(self, u"interact");
|
|
}
|