Files
MonoGame.Extended/source/MonoGame.Extended.Content.Pipeline/ContentImporterResult.cs
T
2024-05-18 19:59:41 -04:00

14 lines
314 B
C#

namespace MonoGame.Extended.Content.Pipeline
{
public class ContentImporterResult<T>
{
public ContentImporterResult(string filePath, T data)
{
FilePath = filePath;
Data = data;
}
public string FilePath { get; }
public T Data { get; }
}
}