Holy vibecode Batman!

This commit is contained in:
2026-05-21 21:00:57 -04:00
parent 7db835e6d4
commit 1bc5199e3b
140 changed files with 11888 additions and 9481 deletions
+11 -15
View File
@@ -1,44 +1,40 @@
#pragma once
#include "autosave_restore.hpp"
#include "popup/autosave_restore.hpp"
#include "documents.hpp"
#include "taskbar.hpp"
#include "window/animation_preview.hpp"
#include "window/animations.hpp"
#include "window/regions.hpp"
#include "window/events.hpp"
#include "window/frame_properties.hpp"
#include "window/layers.hpp"
#include "window/nulls.hpp"
#include "window/onionskin.hpp"
#include "window/sounds.hpp"
#include "window/spritesheet_editor.hpp"
#include "window/spritesheets.hpp"
#include "window/timeline.hpp"
#include "window/tools.hpp"
#include "window/welcome.hpp"
#include "window/window.hpp"
namespace anm2ed::imgui
{
class Dockspace
{
AnimationPreview animationPreview;
Animations animations;
Regions regions;
Events events;
bool isCanvasFocused{};
Window animations{animations_window_register()};
Window regions{regions_window_register()};
Window events{events_window_register()};
FrameProperties frameProperties;
Layers layers;
Nulls nulls;
Window layers{layers_window_register()};
Window nulls{nulls_window_register()};
Onionskin onionskin;
SpritesheetEditor spritesheetEditor;
Spritesheets spritesheets;
Sounds sounds;
Window spritesheets{spritesheets_window_register()};
Window sounds{sounds_window_register()};
Timeline timeline;
Tools tools;
Welcome welcome;
AutosaveRestore autosaveRestore;
public:
bool is_canvas_focused_get() const;
void tick(Manager&, Settings&, float);
void update(Taskbar&, Documents&, Manager&, Settings&, Resources&, Dialog&, Clipboard&);
};