36 lines
556 B
C
36 lines
556 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "display/camera.h"
|
|
#include "error/error.h"
|
|
|
|
typedef struct {
|
|
camera_t camera;
|
|
} scenetest_t;
|
|
|
|
extern scenetest_t SCENE_TEST;
|
|
|
|
/**
|
|
* Initialize the test scene.
|
|
*/
|
|
errorret_t sceneTestInit(void);
|
|
|
|
/**
|
|
* Update the test scene.
|
|
*/
|
|
void sceneTestUpdate(void);
|
|
|
|
/**
|
|
* Render the test scene.
|
|
*/
|
|
void sceneTestRender(void);
|
|
|
|
/**
|
|
* Dispose of the test scene.
|
|
*/
|
|
void sceneTestDispose(void); |