mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
11 lines
227 B
C
11 lines
227 B
C
|
#pragma once
|
||
|
#include "CppScripts.h"
|
||
|
|
||
|
class AmTeapotServer : public CppScripts::Script {
|
||
|
public:
|
||
|
void OnUse(Entity* self, Entity* user) override;
|
||
|
private:
|
||
|
LOT BLUE_FLOWER_LEAVES = 12317;
|
||
|
LOT WU_S_IMAGINATION_TEA = 12109;
|
||
|
};
|