using System; using UnityEngine; namespace SepCore.Entity { [Serializable] public class EffectData : EntityDataBase { [SerializeField] private float _keepTime = 0f; public EffectData(int entityId, int typeId) : base(entityId, typeId) { _keepTime = 3f; } public float KeepTime => _keepTime; } }