mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-21 01:39:32 +00:00
14 lines
314 B
C#
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; }
|
|
}
|
|
} |