Files
RobustToolbox/Robust.Client/ResourceManagement/TextureLoadedEventArgs.cs
T
Pieter-Jan BriersandGitHub af249f80c8 Improved click detection supporting features: (#1133)
* Improved click detection supporting features:

Clickable removed from engine
Texture/RSI load hooks for content
New sprite layer API

* Fix tests.
2020-06-18 02:25:02 +02:00

20 lines
498 B
C#

using Robust.Shared.Utility;
using SixLabors.ImageSharp;
namespace Robust.Client.ResourceManagement
{
public readonly struct TextureLoadedEventArgs
{
internal TextureLoadedEventArgs(ResourcePath path, Image image, TextureResource resource)
{
Path = path;
Image = image;
Resource = resource;
}
public ResourcePath Path { get; }
public Image Image { get; }
public TextureResource Resource { get; }
}
}