8 lines
190 B
Dart
8 lines
190 B
Dart
class RuntimeOptions {
|
|
const RuntimeOptions({this.runtimeLuaRoot = defaultRuntimeLuaRoot});
|
|
|
|
static const defaultRuntimeLuaRoot = 'assets/runtime/lua';
|
|
|
|
final String runtimeLuaRoot;
|
|
}
|