Files
pgs/Assets/Plugins/MMFeedbacks/MMTools/Tools/MMAttributes/MMDebugLogCommandAttribute.cs

14 lines
414 B
C#
Raw Normal View History

2026-02-21 16:58:22 -08:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MoreMountains.Tools
{
/// <summary>
/// An attribute to add to static methods to they can be called via the MMDebugMenu's command line
/// </summary>
[AttributeUsage(System.AttributeTargets.Method, AllowMultiple = false)]
public class MMDebugLogCommandAttribute : System.Attribute { }
}