19 lines
327 B
C++
19 lines
327 B
C++
#pragma once
|
|
|
|
#include "holly/region_array.hpp"
|
|
#include "ta_multiwriter.hpp"
|
|
|
|
namespace scene {
|
|
|
|
struct scene {
|
|
const uint32_t ta_alloc;
|
|
const struct opb_size opb_size;
|
|
void (* const transfer)(ta_multiwriter& multi);
|
|
void (* const init)();
|
|
};
|
|
|
|
extern const scene * current_scene;
|
|
|
|
void scene_init();
|
|
}
|