0ad/binaries/data/mods/public/simulation/components/Wonder.js
fatherbushido 9cf84c6800 Fix documentation of non system component.
Summary: -

Test Plan: -

Reviewers: Itms, leper

Reviewed By: leper
Subscribers: Vulcan, O1 C++ Simulation

Differential Revision: https://code.wildfiregames.com/D221
This was SVN commit r19337.
2017-03-24 07:09:28 +00:00

11 lines
198 B
JavaScript

function Wonder() {}
Wonder.prototype.Schema = "<empty/>";
Wonder.prototype.Init = function()
{
};
Wonder.prototype.Serialize = null;
Engine.RegisterComponentType(IID_Wonder, "Wonder", Wonder);