1
0
forked from 0ad/0ad
0ad/binaries/data/mods/public/simulation/components/WallPiece.js

17 lines
313 B
JavaScript
Raw Normal View History

function WallPiece() {}
WallPiece.prototype.Schema =
"<a:help></a:help>" +
"<a:example>" +
"</a:example>" +
"<element name='Length'>" +
"<ref name='nonNegativeDecimal'/>" +
"</element>";
WallPiece.prototype.Init = function()
{
};
Engine.RegisterComponentType(IID_WallPiece, "WallPiece", WallPiece);