mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 22:03:56 -07:00
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.
11 lines
198 B
JavaScript
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);
|