mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
11 lines
262 B
C
11 lines
262 B
C
|
#pragma once
|
||
|
#include "CppScripts.h"
|
||
|
#include "FvRacePillarServer.h"
|
||
|
|
||
|
class FvRacePillarDServer : public FvRacePillarServer {
|
||
|
void OnCollisionPhantom(Entity* self, Entity* target) override;
|
||
|
private:
|
||
|
const LOT m_PillarD = 11949;
|
||
|
const LOT m_Dragon = 11898;
|
||
|
};
|