forked from mirrors/0ad
252df0a1db
To make it easy for the engine to access the exported values the namespace is returned from the future.
7 lines
79 B
JavaScript
7 lines
79 B
JavaScript
export let value = 6;
|
|
|
|
export function mutate(newValue)
|
|
{
|
|
value = newValue;
|
|
}
|