mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
18 lines
441 B
C#
18 lines
441 B
C#
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
// TODO: Maybe implement IDisposable for owned textures. I got lazy and didn't.
|
|
/// <summary>
|
|
/// Represents a mutable texture that can be modified and deleted.
|
|
/// </summary>
|
|
public abstract class OwnedTexture : Texture
|
|
{
|
|
public abstract void Delete();
|
|
|
|
protected OwnedTexture(Vector2i size) : base(size)
|
|
{
|
|
}
|
|
}
|
|
}
|