mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
To make it easy for the engine to access the exported values the namespace is returned from the future.
6 lines
79 B
JavaScript
6 lines
79 B
JavaScript
export let value = 6;
|
|
|
|
export function mutate(newValue)
|
|
{
|
|
value = newValue;
|
|
}
|