diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs
index e50e6c4c..587683d4 100644
--- a/TShockAPI/GetDataHandlers.cs
+++ b/TShockAPI/GetDataHandlers.cs
@@ -3770,12 +3770,27 @@ namespace TShockAPI
{
{TileID.MinecartTrack, 3}
};
-
+
+ ///
+ /// Contains brief information about a projectile
+ ///
public struct ProjectileStruct
{
+ ///
+ /// Index inside Main.projectile
+ ///
public int Index { get; set; }
+ ///
+ /// Projectile's type ID
+ ///
public short Type { get; set; }
+ ///
+ /// Time at which the projectile was created
+ ///
public DateTime CreatedAt { get; set; }
+ ///
+ /// Whether or not the projectile has been killed
+ ///
public bool Killed { get; internal set; }
}