Files
flutter_lua_runtime/lib/runtime/game/runtime_options.dart
2026-06-07 22:53:58 +08:00

8 lines
190 B
Dart

class RuntimeOptions {
const RuntimeOptions({this.runtimeLuaRoot = defaultRuntimeLuaRoot});
static const defaultRuntimeLuaRoot = 'assets/runtime/lua';
final String runtimeLuaRoot;
}