Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IContentValidator.cs
Go to the documentation of this file.
1namespace ReLogic.Content;
2
3public interface IContentValidator
4{
5 bool AssetIsValid<T>(T content, string contentPath, out IRejectionReason rejectionReason) where T : class;
6}
bool AssetIsValid< T >(T content, string contentPath, out IRejectionReason rejectionReason)