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