LiteLoaderBDS-1.16.40/ScriptEngine/Main/EconomicSystem.h
2022-09-21 19:47:03 +08:00

27 lines
718 B
C++

#pragma once
#include <string>
using std::string;
typedef long long money_t;
typedef string xuid_t;
enum LLMoneyEvent
{
Set, Add, Reduce, Trans
};
typedef bool (*LLMoneyCallback)(LLMoneyEvent type, xuid_t from, xuid_t to, money_t value);
class EconomySystem
{
public:
static bool init();
static money_t getMoney(xuid_t player);
static bool setMoney(xuid_t player, money_t money);
static bool addMoney(xuid_t player, money_t money);
static bool reduceMoney(xuid_t player, money_t money);
static bool transMoney(xuid_t player1, xuid_t player2, money_t money, string const& notes);
static std::string getMoneyHist(xuid_t player, int time);
static bool clearMoneyHist(int time);
};