mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
13 lines
256 B
C++
13 lines
256 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
|