22 lines
392 B
C++
22 lines
392 B
C++
#pragma once
|
|
|
|
#include "manager.h"
|
|
#include "resources.h"
|
|
#include "settings.h"
|
|
#include "strings.h"
|
|
|
|
namespace anm2ed::imgui
|
|
{
|
|
class Tools
|
|
{
|
|
bool isOpenColorEdit{};
|
|
ImVec2 colorEditPosition{};
|
|
|
|
PopupHelper colorEditPopup{
|
|
PopupHelper(LABEL_TOOLS_COLOR_EDIT_POPUP, POPUP_TO_CONTENT, POPUP_BY_ITEM)};
|
|
|
|
public:
|
|
void update(Manager&, Settings&, Resources&);
|
|
};
|
|
}
|