mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-01 07:50:25 +01:00
10 lines
170 B
C++
10 lines
170 B
C++
|
#pragma once
|
||
|
|
||
|
namespace linear_view {
|
||
|
struct Sizes {
|
||
|
int timeline_margin = 130;
|
||
|
int cursor_height = 100;
|
||
|
};
|
||
|
|
||
|
const Sizes default_sizes = {};
|
||
|
}
|