private void UpdateColors() { for (int y = 0; y < 16; y++) { for (int x = 0; x < 16; x++) { byte r = (byte)(y * 16 + x); colorPlacer.UpdateImage(x, y, colors.State.GetColor(r)); } } }
public void DrawCurrent() { for (int y = 0; y < 16; y++) { for (int x = 0; x < 16; x++) { byte r = (byte)(y * 16 + x); colorPlacer.UpdateImage(x, y, colors.State.GetColor(r)); } } }