123456789101112131415161718192021 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PeerList : BaseList
- {
- void Start()
- {
-
- }
- void Update()
- {
-
- }
- public override void InitList(List<BaseConfig> c)
- {
- base.InitList(c);
- }
- }
|