using Unity.Entities;
namespace DefaultNamespace
{
///
/// Used to keep GO for some time to do fancy animations.
/// If this component is not present the GO is destroyed instantly.
///
[GenerateAuthoringComponent]
public struct ActorDeathAnimationData : IComponentData
{
///
/// The amount of time in seconds the GO should remain.
///
public float Time;
}
}