mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
🔥 to be generated
This commit is contained in:
parent
aa71a9f538
commit
f97915591a
1 changed files with 0 additions and 39 deletions
|
|
@ -1,39 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
// Setting both values to 0 does not compile logging (useful for if disk/memory is very valuable)
|
||||
#define MAX_LOG_SIZE 100
|
||||
#define PRE_LOG_SIZE 10
|
||||
|
||||
//default to minecraft usernames
|
||||
constexpr unsigned min_name_size = 3;
|
||||
constexpr unsigned max_name_size = 16;
|
||||
|
||||
constexpr const char *users_location = "yo";
|
||||
constexpr const char *config_location = ;
|
||||
|
||||
// Returns money to an account on deletion (useful if you dont want any money to leave the economy)
|
||||
#define RETURN_ON_DEL false
|
||||
constexpr const char *return_account = "";
|
||||
|
||||
/*
|
||||
if true, when frequency is hit AND changes have happened then save
|
||||
pros
|
||||
LOW disk usage
|
||||
cons
|
||||
LOW atomic overhead
|
||||
if false, when frequency is hit save
|
||||
pros
|
||||
ZERO atomic overhead
|
||||
cons
|
||||
HIGH disk usage
|
||||
*/
|
||||
#define CONSERVATIVE_DISK_SAVE true
|
||||
|
||||
/*
|
||||
example, when set to 2
|
||||
version 1 will not work
|
||||
version 2 will work
|
||||
version 3 will work
|
||||
etc
|
||||
*/
|
||||
#define API_VERSION 1
|
||||
Loading…
Reference in a new issue