959e80cf72
assets upload description.
22 lines
699 B
C#
22 lines
699 B
C#
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<EffectOnEntity> activeEffects = new List<EffectOnEntity>();
|
|
|
|
public EntityAttributesSaveData(BaseAttributes attributes, EntityDerivedAttributes derivedAttributes, List<EffectOnEntity> activeEffects)
|
|
{
|
|
this.attributes = attributes;
|
|
this.derivedAttributes = derivedAttributes;
|
|
this.activeEffects = activeEffects;
|
|
}
|
|
}
|
|
} |