mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
* Improved click detection supporting features: Clickable removed from engine Texture/RSI load hooks for content New sprite layer API * Fix tests.
20 lines
498 B
C#
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; }
|
|
}
|
|
}
|