12 lines
322 B
C#
12 lines
322 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class EversoulInterface : ModelViewerInterface
|
|
{
|
|
public static EversoulInterface Instance => GetInstance<EversoulInterface>();
|
|
|
|
public EversoulCharacterDropdown CharacterSelection;
|
|
public UIToolbar SelectedObjectToolbar;
|
|
}
|