Files
anm2ed/src/imgui/wizard/change_all_frame_properties.hpp
T

16 lines
213 B
C++

#pragma once
#include "document.hpp"
#include "settings.hpp"
namespace anm2ed::imgui::wizard
{
class ChangeAllFrameProperties
{
public:
bool isChanged{};
void update(Document&, Settings&);
};
}