Getting shaders working with lua.
This commit is contained in:
16
src/duskrpg/script/scriptgame.h
Normal file
16
src/duskrpg/script/scriptgame.h
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright (c) 2026 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "script/module/item/moduleitem.h"
|
||||
#include "script/module/story/modulestoryflag.h"
|
||||
#include "script/module/map/modulemap.h"
|
||||
|
||||
#define SCRIPT_GAME_LIST \
|
||||
{ .name = "item", .callback = moduleItem }, \
|
||||
{ .name = "storyflag", .callback = moduleStoryFlag }, \
|
||||
{ .name = "map", .callback = moduleMap },
|
||||
Reference in New Issue
Block a user