seefood_diet / Assets / Scripts / SDUIHomeView.cs
SDUIHomeView.cs
Raw
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface ISDUIHomeView : ISDUIPresentView {

}

public class SDUIHomeView : SDUIPresentView, ISDUIHomeView {

    [SerializeField] Canvas m_CanvasView;
    public Canvas CanvasView { get { return m_CanvasView; } }
}