PongFE/PongFE/Components/SpawnBallAfterDestroyCompon...

15 lines
275 B
C#

using Encompass;
namespace PongFE.Components
{
public struct SpawnBallAfterDestroyComponent : IComponent
{
public float Seconds { get; }
public SpawnBallAfterDestroyComponent(float seconds)
{
Seconds = seconds;
}
}
}