mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-22 23:02:35 +00:00
9 lines
191 B
C++
9 lines
191 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class FvRaceDragonLap2 : public CppScripts::Script {
|
|
void OnCollisionPhantom(Entity* self, Entity* target) override;
|
|
private:
|
|
LOT m_Dragon = 11898;
|
|
};
|