yambar/particles/dynlist.h
Kyle Gunger 60c18246d8 Basic vertical rendering
- Add height attribute to most particles for height generation on the fly
2023-01-18 03:43:35 -05:00

8 lines
214 B
C

#pragma once
#include <stddef.h>
#include <stdbool.h>
struct particle;
struct exposable *dynlist_exposable_new(
struct exposable **exposables, size_t count, bool vertical, int pre_spacing, int post_spacing);