DarkflameServer/dScripts/TokenConsoleServer.h
2021-12-05 18:54:36 +01:00

10 lines
202 B
C++

#pragma once
#include "CppScripts.h"
class TokenConsoleServer : public CppScripts::Script {
void OnUse(Entity* self, Entity* user) override;
private:
int bricksToTake = 25;
int tokensToGive = 5;
};