Add card inventory classes and helpers
This commit is contained in:
23
Assets/Scripts/Core/Logging.cs
Normal file
23
Assets/Scripts/Core/Logging.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace Core
|
||||
{
|
||||
public static class Logging
|
||||
{
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Debug(object message)
|
||||
{
|
||||
UnityEngine.Debug.Log(message);
|
||||
}
|
||||
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Warning(object message)
|
||||
{
|
||||
UnityEngine.Debug.LogWarning(message);
|
||||
}
|
||||
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Error(object message)
|
||||
{
|
||||
UnityEngine.Debug.LogError(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Scripts/Core/Logging.cs.meta
Normal file
3
Assets/Scripts/Core/Logging.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 99ee122ee6ee4b57b40c03be4479b124
|
||||
timeCreated: 1760446431
|
||||
@@ -2,6 +2,7 @@
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Cinematics;
|
||||
using Core;
|
||||
using Data.CardSystem;
|
||||
using Input;
|
||||
using PuzzleS;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user