This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
Lemonade/Lemonade/Image.cs

14 lines
292 B
C#
Raw Normal View History

2020-06-12 20:02:39 +02:00
using CC_Functions.Commandline.TUI;
2020-06-12 20:02:04 +02:00
namespace Lemonade
{
2020-06-12 20:02:39 +02:00
public class Image : Control
2020-06-12 20:02:04 +02:00
{
2020-06-12 20:02:39 +02:00
public Pixel[,] Img;
public Image(Pixel[,] img) => Img = img;
public override bool Selectable { get; } = false;
2020-06-12 20:16:11 +02:00
public override Pixel[,] Render() => Img;
2020-06-12 20:02:04 +02:00
}
}