ContentImporterResult.cs 314 B

1234567891011121314
  1. namespace MonoGame.Extended.Content.Pipeline
  2. {
  3. public class ContentImporterResult<T>
  4. {
  5. public ContentImporterResult(string filePath, T data)
  6. {
  7. FilePath = filePath;
  8. Data = data;
  9. }
  10. public string FilePath { get; }
  11. public T Data { get; }
  12. }
  13. }