mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
20 lines
488 B
C#
20 lines
488 B
C#
using Robust.Shared.Utility;
|
|
using SixLabors.ImageSharp;
|
|
|
|
namespace Robust.Client.ResourceManagement
|
|
{
|
|
public readonly struct TextureLoadedEventArgs
|
|
{
|
|
internal TextureLoadedEventArgs(ResPath path, Image image, TextureResource resource)
|
|
{
|
|
Path = path;
|
|
Image = image;
|
|
Resource = resource;
|
|
}
|
|
|
|
public ResPath Path { get; }
|
|
public Image Image { get; }
|
|
public TextureResource Resource { get; }
|
|
}
|
|
}
|