LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DigitalRuby/ThunderAndLightning/LightningBoltSegment.cs

17 lines
252 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using UnityEngine;
namespace DigitalRuby.ThunderAndLightning
{
public struct LightningBoltSegment
{
public Vector3 Start;
public Vector3 End;
public override string ToString()
{
return Start.ToString() + ", " + End.ToString();
}
}
}