Files
MonoGame.Extended/Source/MonoGame.Extended.Content.Pipeline/ContentImporterResult.cs
T
Lucas Girouard-StranksandDylan Wilson 9e359fb750 Tiled Rework (#331)
* Tiled Rework

* fix failing tests

* really fix failing tests
2017-01-18 20:46:38 +10:00

14 lines
340 B
C#

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