35 lines
1019 B
C#
35 lines
1019 B
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright (c) The OpenRA Developers and Contributors
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using OpenRA.Scripting;
|
|
|
|
namespace OpenRA.Mods.Common.Scripting.Global
|
|
{
|
|
[ScriptGlobal("Angle")]
|
|
public class AngleGlobal : ScriptGlobal
|
|
{
|
|
public AngleGlobal(ScriptContext context)
|
|
: base(context) { }
|
|
|
|
public WAngle North => WAngle.Zero;
|
|
public WAngle NorthWest => new(128);
|
|
public WAngle West => new(256);
|
|
public WAngle SouthWest => new(384);
|
|
public WAngle South => new(512);
|
|
public WAngle SouthEast => new(640);
|
|
public WAngle East => new(768);
|
|
public WAngle NorthEast => new(896);
|
|
|
|
[Desc("Create an arbitrary angle.")]
|
|
public WAngle New(int a) { return new WAngle(a); }
|
|
}
|
|
}
|