diff --git a/Source/Editor/Content/Proxy/ContentProxy.cs b/Source/Editor/Content/Proxy/ContentProxy.cs
index 0948ef5e8..afb5c11fb 100644
--- a/Source/Editor/Content/Proxy/ContentProxy.cs
+++ b/Source/Editor/Content/Proxy/ContentProxy.cs
@@ -73,6 +73,16 @@ namespace FlaxEditor.Content
throw new NotImplementedException();
}
+ ///
+ /// Determines whether the specified filename is valid for this proxy.
+ ///
+ /// The filename.
+ /// true if the filename is valid, otherwise false.
+ public virtual bool IsFileNameValid(string filename)
+ {
+ return true;
+ }
+
///
/// Determines whether this proxy can create items in the specified target location.
///