Merge pull request #9267 from clemty/luadocs

Lua API documentation cleanup
This commit is contained in:
abcdefg30
2015-09-11 20:32:48 +02:00
6 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Scripting namespace OpenRA.Mods.Common.Scripting
{ {
[ScriptGlobal("Air Support Powers")] [ScriptPropertyGroup("Support Powers")]
public class AirstrikeProperties : ScriptActorProperties, Requires<AirstrikePowerInfo> public class AirstrikeProperties : ScriptActorProperties, Requires<AirstrikePowerInfo>
{ {
readonly AirstrikePower ap; readonly AirstrikePower ap;

View File

@@ -14,7 +14,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Scripting namespace OpenRA.Mods.Common.Scripting
{ {
[ScriptPropertyGroup("Guard")] [ScriptPropertyGroup("Combat")]
public class GuardProperties : ScriptActorProperties, Requires<GuardInfo>, Requires<IMoveInfo> public class GuardProperties : ScriptActorProperties, Requires<GuardInfo>, Requires<IMoveInfo>
{ {
Guard guard; Guard guard;

View File

@@ -14,7 +14,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Scripting namespace OpenRA.Mods.Common.Scripting
{ {
[ScriptPropertyGroup("Harvester")] [ScriptPropertyGroup("Movement")]
public class HarvesterProperties : ScriptActorProperties, Requires<HarvesterInfo> public class HarvesterProperties : ScriptActorProperties, Requires<HarvesterInfo>
{ {
readonly Harvester harvester; readonly Harvester harvester;

View File

@@ -14,7 +14,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Scripting namespace OpenRA.Mods.Common.Scripting
{ {
[ScriptPropertyGroup("Transform")] [ScriptPropertyGroup("General")]
public class TransformProperties : ScriptActorProperties, Requires<TransformsInfo> public class TransformProperties : ScriptActorProperties, Requires<TransformsInfo>
{ {
readonly Transforms transforms; readonly Transforms transforms;

View File

@@ -15,7 +15,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.RA.Scripting namespace OpenRA.Mods.RA.Scripting
{ {
[ScriptPropertyGroup("Paradrop")] [ScriptPropertyGroup("Transports")]
public class ParadropProperties : ScriptActorProperties, Requires<CargoInfo>, Requires<ParaDropInfo> public class ParadropProperties : ScriptActorProperties, Requires<CargoInfo>, Requires<ParaDropInfo>
{ {
readonly ParaDrop paradrop; readonly ParaDrop paradrop;

View File

@@ -15,7 +15,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.RA.Scripting namespace OpenRA.Mods.RA.Scripting
{ {
[ScriptPropertyGroup("Paratroopers")] [ScriptPropertyGroup("Support Powers")]
public class ParatroopersProperties : ScriptActorProperties, Requires<ParatroopersPowerInfo> public class ParatroopersProperties : ScriptActorProperties, Requires<ParatroopersPowerInfo>
{ {
readonly ParatroopersPower pp; readonly ParatroopersPower pp;