using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace MoreMountains.Tools { /// /// An attribute to add to static methods to they can be called via the MMDebugMenu's command line /// [AttributeUsage(System.AttributeTargets.Method, AllowMultiple = false)] public class MMDebugLogCommandAttribute : System.Attribute { } }