sdcafiine_plugin/src/globals.h

22 lines
771 B
C
Raw Normal View History

2021-04-06 16:58:19 +02:00
#pragma once
2022-09-18 13:04:02 +02:00
#include "version.h"
2024-03-24 11:18:47 +01:00
#include <content_redirection/redirection.h>
2021-04-06 16:58:19 +02:00
2024-04-27 13:26:50 +02:00
#define VERSION "v0.1.4"
#define VERSION_FULL VERSION VERSION_EXTRA
2022-09-18 13:04:02 +02:00
#define AUTO_APPLY_SINGLE_MODPACK_STRING "autoApplySingleModpack"
#define SKIP_PREPARE_FOR_SINGLE_MODPACK_STRING "skipPrepareForSingleModpack"
#define SDCAFIINE_ENABLED_STRING "sdCafiineEnabled"
2024-03-24 11:18:47 +01:00
#define DEFAULT_AUTO_APPLY_SINGLE_MODPACK false
#define DEFAULT_SKIP_PREPARE_IF_SINGLE_MODPACK false
#define DEFAULT_SDCAFIINE_ENABLED true
2022-09-18 13:04:02 +02:00
extern bool gAutoApplySingleModpack;
extern bool gSkipPrepareIfSingleModpack;
2024-03-24 11:18:47 +01:00
extern bool gSDCafiineEnabled;
extern CRLayerHandle gAocLayerHandle;
extern CRLayerHandle gContentLayerHandle;