Files
PDModdingCommunity_PD-Loader/source-code/source/plugins/TLAC/Components/CustomPlayerData.h
T

22 lines
371 B
C++

#pragma once
#include <string>
namespace TLAC::Components
{
struct CustomPlayerData
{
std::string *PlayerName;
std::string* LevelName;
int LevelPlateId;
int SkinEquip;
int BtnSeEquip;
int SlideSeEquip;
int ChainslideSeEquip;
bool ShowGreatClearBorder;
bool ShowExcellentClearBorder;
bool UseCard;
bool GameModifierOptions;
bool ActionSE;
};
}