8 lines
293 B
JavaScript
8 lines
293 B
JavaScript
|
import Variable from 'resource:///com/github/Aylur/ags/variable.js';
|
||
|
|
||
|
// AGS Variables
|
||
|
export const showMusicControls = Variable(false, {})
|
||
|
export const showColorScheme = Variable(false, {})
|
||
|
globalThis['openMusicControls'] = showMusicControls;
|
||
|
globalThis['openColorScheme'] = showColorScheme;
|