mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
14 lines
314 B
C#
14 lines
314 B
C#
using Microsoft.Xna.Framework.Content.Pipeline;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline
|
|
{
|
|
public class ContentLogger
|
|
{
|
|
public static ContentBuildLogger Logger { get; set; }
|
|
|
|
public static void Log(string message)
|
|
{
|
|
Logger?.LogMessage(message);
|
|
}
|
|
}
|
|
} |