BaseView.cs 531 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.EventSystems;
  5. using UnityEngine.UI;
  6. public class BaseView : MonoBehaviour
  7. {
  8. [HideInInspector]
  9. public BaseConfig config;
  10. [HideInInspector]
  11. public BaseList baselist;
  12. // Start is called before the first frame update
  13. void Start()
  14. {
  15. }
  16. // Update is called once per frame
  17. void Update()
  18. {
  19. }
  20. public virtual void Init(int i, BaseConfig c,int vi)
  21. {
  22. }
  23. }