mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-06 13:46:14 +00:00
7ff5fbda2b
This was SVN commit r15157.
17 lines
551 B
JavaScript
17 lines
551 B
JavaScript
function ValueModificationManager() {};
|
|
|
|
/*
|
|
* A component to give the C++ defined components access to all value modifying components
|
|
* via the helper script.
|
|
*/
|
|
ValueModificationManager.prototype.Schema =
|
|
"<a:component type='system'/><empty/>";
|
|
|
|
ValueModificationManager.prototype.ApplyModifications = function(valueName, currentValue, entity)
|
|
{
|
|
return ApplyValueModificationsToEntity(valueName, currentValue, entity);
|
|
};
|
|
|
|
Engine.RegisterSystemComponentType(IID_ValueModificationManager, "ValueModificationManager", ValueModificationManager);
|
|
|