Files
FlaxEngine/Source/Engine/Content/Asset.cs
2023-01-10 15:29:37 +01:00

14 lines
264 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
namespace FlaxEngine
{
partial class Asset
{
/// <inheritdoc />
public override string ToString()
{
return $"{Path} ({GetType().Name})";
}
}
}