Files
FlaxEngine/Source/Engine/Content/Asset.cs
2021-01-02 14:28:49 +01:00

14 lines
264 B
C#

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