/** * Copyright (c) 2025 Dominic Masters * * This software is released under the MIT License. * https://opensource.org/licenses/MIT */ #pragma once #include "error/error.h" typedef struct scriptmanager_s { void *nothing; } scriptmanager_t; extern scriptmanager_t SCRIPT_MANAGER; /** * Initialize the script manager. * * @return The error return value. */ errorret_t scriptManagerInit(); /** * Dispose of the script manager. * * @return The error return value. */ errorret_t scriptManagerDispose();