All checks were successful
Build Dusk / run-tests (push) Successful in 2m12s
Build Dusk / build-linux (push) Successful in 1m49s
Build Dusk / build-psp (push) Successful in 1m52s
24 lines
527 B
C
24 lines
527 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dusk.h"
|
|
#include "error/error.h"
|
|
#include "display/color.h"
|
|
|
|
#define SCENE_FLAG_INITIALIZED (1 << 0)
|
|
|
|
typedef struct scenedata_s scenedata_t;
|
|
|
|
typedef struct {
|
|
const char_t *name;
|
|
errorret_t (*init)(scenedata_t *data);
|
|
void (*update)(scenedata_t *data);
|
|
void (*render)(scenedata_t *data);
|
|
void (*dispose)(scenedata_t *data);
|
|
uint8_t flags;
|
|
} scene_t; |