Files
FlaxEngine/Source/Engine/Content/Asset.cs

14 lines
254 B
C#

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