blob: a0bd854370047b9db9d0bc74a8cf7456886ca081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "types.h"
#include <crepe/api/Scene.h>
class FloatingWindowSubScene {
public:
struct Data{
const std::string group_tag = "";
float width = 200;
crepe::vec2 offset = {0,0};
float width_middle_offset = 0;
};
public:
void create(crepe::Scene & scn,const Data & data);
};
|