DarkflameServer/dScripts/TokenConsoleServer.h
2022-07-28 08:39:57 -05:00

11 lines
203 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;
};