Files
FlaxEngine/Source/Engine/Content/Asset.cs
2024-02-26 19:00:48 +01:00

14 lines
264 B
C#

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