mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 12:03:39 +00:00
27 lines
718 B
C++
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);
|
|
}; |