14 lines
327 B
C
14 lines
327 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "script/scriptcontext.h"
|
|
#include "assert/assert.h"
|
|
|
|
void scriptFuncCamera(scriptcontext_t *context) {
|
|
assertNotNull(context, "Script context cannot be NULL");
|
|
} |