1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
2025-03-15 20:02:21 +01:00

29 lines
870 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace EvolutStudio
{
namespace tinysAPI
{
namespace BaseClasses
{
abstract public class BaseClassPresenter : BaseClass
{
#region Interface Functions
// interface function for notify
abstract public void Notify(string Notification, UnityEngine.Object DataReference = null);
// interface function for view to notify presenter to update the subview values from model
abstract public void InitComponent(BaseClassComponent Component);
// interface function for view to update all validated values
abstract public void UpdateComponent(BaseClassComponent Component);
#endregion
}
}
}
}