1
0
forked from 0ad/0ad
0ad/binaries/data/mods/_test.sim/simulation/components/test-hotload2.js

12 lines
220 B
JavaScript
Raw Normal View History

function HotloadA() {}
HotloadA.prototype.Init = function() {
this.x = +this.template.x;
};
HotloadA.prototype.GetX = function() {
return this.x*10;
};
Engine.RegisterComponentType(IID_Test1, "HotloadA", HotloadA);