mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-13 22:55:37 +00:00
2b67499e05
eslint --no-config-lookup --fix --rule '"no-trailing-spaces": 1' Ref: #7812 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
7 lines
105 B
JavaScript
7 lines
105 B
JavaScript
function AdditionHelper(a, b)
|
|
{
|
|
return a+b;
|
|
}
|
|
|
|
Engine.RegisterGlobal("AdditionHelper", AdditionHelper);
|