mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
b0e7a31380
Finish up removing extraneous includes from scripts that start with the letter F
10 lines
179 B
C++
10 lines
179 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class FvMaelstromCavalry : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self);
|
|
void OnDie(Entity* self, Entity* killer);
|
|
};
|