Update projectilestruct to add brief documentation
This commit is contained in:
parent
71cc7f482b
commit
a7166536c2
1 changed files with 16 additions and 1 deletions
|
|
@ -3770,12 +3770,27 @@ namespace TShockAPI
|
||||||
{
|
{
|
||||||
{TileID.MinecartTrack, 3}
|
{TileID.MinecartTrack, 3}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Contains brief information about a projectile
|
||||||
|
/// </summary>
|
||||||
public struct ProjectileStruct
|
public struct ProjectileStruct
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Index inside Main.projectile
|
||||||
|
/// </summary>
|
||||||
public int Index { get; set; }
|
public int Index { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// Projectile's type ID
|
||||||
|
/// </summary>
|
||||||
public short Type { get; set; }
|
public short Type { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// Time at which the projectile was created
|
||||||
|
/// </summary>
|
||||||
public DateTime CreatedAt { get; set; }
|
public DateTime CreatedAt { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// Whether or not the projectile has been killed
|
||||||
|
/// </summary>
|
||||||
public bool Killed { get; internal set; }
|
public bool Killed { get; internal set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue