Add Menu Controlls
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <Common/Common.hpp>
|
||||
#include <ImGui/imgui.h>
|
||||
|
||||
namespace Settings
|
||||
{
|
||||
@@ -9,11 +10,12 @@ namespace Settings
|
||||
inline auto Active = true;
|
||||
inline auto Team = true;
|
||||
inline auto Enemy = true;
|
||||
inline auto OnlyVisible = false;
|
||||
inline auto PlayerBox = true;
|
||||
|
||||
inline auto PlayerBoxType = 3;
|
||||
}
|
||||
namespace Misc
|
||||
namespace Menu
|
||||
{
|
||||
inline auto MenuAlpha = 200;
|
||||
inline auto MenuStyle = 0;
|
||||
@@ -22,10 +24,10 @@ namespace Settings
|
||||
{
|
||||
namespace Visual
|
||||
{
|
||||
inline float PlayerBoxTT[4] = { 255.f / 255.f , 75.f / 255.f , 75.f / 255.f , 1.f };
|
||||
inline float PlayerBoxTT_Visible[4] = { 0 , 1.f , 0.f , 1.f };
|
||||
inline float PlayerBoxCT[4] = { 65.f / 255.f , 200 / 255.f , 255.f / 255.f , 1.f };
|
||||
inline float PlayerBoxCT_Visible[4] = { 0 , 1.f , 0.f , 1.f };
|
||||
inline ImVec4 PlayerBoxTT = { 255.f / 255.f , 75.f / 255.f , 75.f / 255.f , 1.f };
|
||||
inline ImVec4 PlayerBoxTT_Visible = { 0 , 1.f , 0.f , 1.f };
|
||||
inline ImVec4 PlayerBoxCT = { 65.f / 255.f , 200 / 255.f , 255.f / 255.f , 1.f };
|
||||
inline ImVec4 PlayerBoxCT_Visible = { 0 , 1.f , 0.f , 1.f };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user