initial commit

This commit is contained in:
cblech
2025-01-04 13:29:07 +01:00
commit 22f67f4347
124 changed files with 12157 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
using JetBrains.Annotations;
// ReSharper disable once CheckNamespace
namespace EasySharp.ReSharperCustomSourceTemplates
{
public static class ReSharperHelper
{
[SourceTemplate]
public static void log(this object source)
{
//$Debug.Log($"$source$: {source}");$END$
}
[SourceTemplate]
public static void elog(this object source)
{
//$Debug.LogError($"$source$: {source}");$END$
}
[SourceTemplate]
public static void wlog(this object source)
{
//$Debug.LogWarning($"$source$: {source}");$END$
}
}
}