summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Content.Pipeline/ContentImporterResult.cs
blob: e302ca784d5026c20030ada8616caf4591543169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}