mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
13 lines
249 B
C
13 lines
249 B
C
|
#ifndef __LUCGENERICINTERACT__H__
|
||
|
#define __LUCGENERICINTERACT__H__
|
||
|
|
||
|
#include "CppScripts.h"
|
||
|
|
||
|
class LupGenericInteract : public CppScripts::Script {
|
||
|
public:
|
||
|
void OnUse(Entity* self, Entity* user) override;
|
||
|
};
|
||
|
|
||
|
#endif //!__LUCGENERICINTERACT__H__
|
||
|
|