mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-28 23:41:33 +01:00
15 lines
333 B
C++
15 lines
333 B
C++
#pragma once
|
|
|
|
#include <toml++/toml.h>
|
|
|
|
namespace linear_view {
|
|
struct Sizes {
|
|
int timeline_margin = 130;
|
|
int cursor_height = 100;
|
|
|
|
void load_from_v1_0_0_table(const toml::table& linear_view_table);
|
|
void dump_as_v1_0_0(toml::table& linear_view_table);
|
|
};
|
|
|
|
const Sizes default_sizes = {};
|
|
} |