24 lines
493 B
C#
24 lines
493 B
C#
using System;
|
|
using UnityEngine;
|
|
using Core;
|
|
using Gameplay.Player;
|
|
using Script.Gameplay.Facility;
|
|
|
|
namespace UI
|
|
{
|
|
public class PlayerEditPanelViewer : UIBase
|
|
{
|
|
private PlayerEditController controller;
|
|
private FacilityController currentFacilityController;
|
|
private void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// 根据currentFacilityController 生成其对应的组件
|
|
private void GenerateComponent()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |