namespace Zinnia.Data.Type.Observer
{
using System;
using UnityEngine.Events;
///
/// Allows observing changes of a .
///
public class StringObservableProperty : ObservableProperty
{
///
/// Defines the event with the state.
///
[Serializable]
public class UnityEvent : UnityEvent { }
}
}