22 lines
487 B
C
22 lines
487 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "script/module/modulebase.h"
|
|
#include "script/scriptproto.h"
|
|
#include "scene/scene.h"
|
|
|
|
static scriptproto_t MODULE_SCENE_PROTO;
|
|
|
|
static void moduleSceneInit(void) {
|
|
scriptProtoInit(&MODULE_SCENE_PROTO, "Scene", sizeof(uint8_t), NULL);
|
|
}
|
|
|
|
static void moduleSceneDispose(void) {
|
|
scriptProtoDispose(&MODULE_SCENE_PROTO);
|
|
}
|