DarkflameServer/dScripts/02_server/Map/General/TokenConsoleServer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
203 B
C
Raw Normal View History

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