13 lines
313 B
C#
13 lines
313 B
C#
using RPGCoreCommon.Settings;
|
|
using UnityEngine;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace RPGCoreCommon.Select
|
|
{
|
|
[CustomSettings("Tools/Select")]
|
|
public class SelectSettings : CustomSettingsSO
|
|
{
|
|
public PanelSettings uiPanelSettings;
|
|
public LayerMask collisionLayerMask = ~0;
|
|
}
|
|
} |