16 lines
213 B
C++
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&);
|
|
};
|
|
}
|