using System.Collections; using System.Collections.Generic; using UnityEngine; namespace SC.XR.Unity.Module_DetectorSystem { public abstract class SCBaseDetector : SCModuleMono { public abstract SCDetectorType detectorType { get; } } }