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