0ad/binaries/data/mods/public/simulation/components/Identity.js

13 lines
205 B
JavaScript
Raw Normal View History

function Identity() {}
Identity.prototype.Init = function()
{
};
Identity.prototype.GetCiv = function()
{
return this.template.Civ;
};
Engine.RegisterComponentType(IID_Identity, "Identity", Identity);