// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.Content { /// /// File entry action (import or create). /// [HideInEditor] public interface IFileEntryAction { /// /// The source file path (may be empty or null). /// string SourceUrl { get; } /// /// The result file path. /// string ResultUrl { get; } /// /// Executes this action. /// /// True if, failed, otherwise false. bool Execute(); } }