14 lines
190 B
C#
14 lines
190 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Steamworks
|
|
{
|
|
public static class CallbackDispatcher
|
|
{
|
|
public static void ExceptionHandler(Exception e)
|
|
{
|
|
Debug.LogException(e);
|
|
}
|
|
}
|
|
}
|