17 lines
386 B
C#
17 lines
386 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
public class GeneralOptionPanelController : MonoBehaviour
|
||
|
|
{
|
||
|
|
private Transform _transfrom;
|
||
|
|
public Button MouseGudies;
|
||
|
|
public Button BuildingModel;
|
||
|
|
public Button EditModel;
|
||
|
|
public Button LongitudinalGudies;
|
||
|
|
public Button MeshSwitch;
|
||
|
|
public Button Output;
|
||
|
|
|
||
|
|
}
|