using System.Collections; using System.Collections.Generic; using UnityEngine; using System; namespace RPGCreationKit.SaveSystem { [Serializable] public class EntityAttributesSaveData { public BaseAttributes attributes; public EntityDerivedAttributes derivedAttributes; public List activeEffects = new List(); public EntityAttributesSaveData(BaseAttributes attributes, EntityDerivedAttributes derivedAttributes, List activeEffects) { this.attributes = attributes; this.derivedAttributes = derivedAttributes; this.activeEffects = activeEffects; } } }