DarkflameServer/dScripts/FireFirstSkillonStartup.h
David Markowitz 670a2de95b
Address issue with Inventor Beehive and Buccaneer Monkey ability on valiant weapon (#604)
* Add Script

Add the FireFirstSkillonStartup script to allow for scripts that use this to function.

* Add comments
2022-06-27 21:36:18 -07:00

13 lines
282 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__