21 lines
No EOL
476 B
C#
21 lines
No EOL
476 B
C#
using WingsAPI.Scripting.Attribute;
|
|
|
|
namespace WingsAPI.Scripting.Object.Common
|
|
{
|
|
/// <summary>
|
|
/// Object used to represent a position in a script
|
|
/// </summary>
|
|
[ScriptObject]
|
|
public class SPosition
|
|
{
|
|
/// <summary>
|
|
/// Position on X axis
|
|
/// </summary>
|
|
public short X { get; set; }
|
|
|
|
/// <summary>
|
|
/// Position on Y axis
|
|
/// </summary>
|
|
public short Y { get; set; }
|
|
}
|
|
} |