NYAN CAT 264affa76f Update
Added remotedesktop + process manager
2019-02-07 15:47:12 -08:00

26 lines
565 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
namespace StreamLibrary.Encoders.GridCoder
{
internal class GridBlock
{
public Rectangle Rect { get; private set; }
public ulong Hash { get; private set; }
private GridEncoder encoder;
public GridBlock(Rectangle Rect, GridEncoder encoder)
{
this.encoder = encoder;
this.Rect = Rect;
CalculateHash();
}
public void CalculateHash()
{
}
}
}