mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
13 lines
271 B
C
13 lines
271 B
C
|
#pragma once
|
||
|
#ifndef __FIREFIRSTSKILLONSTARTUP__H__
|
||
|
#define __FIREFIRSTSKILLONSTARTUP__H__
|
||
|
|
||
|
#include "CppScripts.h"
|
||
|
|
||
|
class FireFirstSkillonStartup : public CppScripts::Script {
|
||
|
public:
|
||
|
void OnStartup(Entity* self) override;
|
||
|
};
|
||
|
|
||
|
#endif //!__FIREFIRSTSKILLONSTARTUP__H__
|