7 lines
105 B
C#
7 lines
105 B
C#
namespace GameCore.ECS;
|
|
|
|
public struct HitResult
|
|
{
|
|
public bool DidHit;
|
|
public Entity HitEntity;
|
|
} |