Unity-Logs-Viewer icon indicating copy to clipboard operation
Unity-Logs-Viewer copied to clipboard

Class name clashes with Editor namespace

Open guneyozsan opened this issue 4 years ago • 0 comments

The base class of ReporterEditor is named Editor. However, this clashes with namespace Editor used for Editor folders in Unity.

I suggest moving plugin files to their own namespace:

namespace Unity_Logs_Viewer.Reporter.Editor
{
	public class ReporterEditor : UnityEditor.Editor
	{
            ...
        }
}

guneyozsan avatar Nov 29 '21 15:11 guneyozsan