mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
16 lines
412 B
C
16 lines
412 B
C
|
#pragma once
|
||
|
#include "CppScripts.h"
|
||
|
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
|
||
|
class FvRaceDragon : public CppScripts::Script {
|
||
|
public:
|
||
|
FvRaceDragon(const std::string_view lapAnimName, const int32_t lap) : m_LapAnimName(lapAnimName), m_Lap(lap) {}
|
||
|
private:
|
||
|
void OnCollisionPhantom(Entity* self, Entity* target) override;
|
||
|
const std::string m_LapAnimName;
|
||
|
const int32_t m_Lap;
|
||
|
const LOT m_Dragon = 11898;
|
||
|
};
|