Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ContentRejectionNoCompatibleReader.cs
Go to the documentation of this file.
1namespace ReLogic.Content;
2
4{
5 private readonly string reason;
6
7 public ContentRejectionNoCompatibleReader(string extension, string[] supportedExtensions)
8 {
9 reason = "Files of type '" + extension + "' cannot be read. Supported extensions are: " + string.Join(" ", supportedExtensions);
10 }
11
12 public string GetReason()
13 {
14 return reason;
15 }
16}
ContentRejectionNoCompatibleReader(string extension, string[] supportedExtensions)