package net.starmen.pkhack;

/*
=====================================================================

  HexData.java
  
  Created by Claude Duguay
  Copyright (c) 2001
  
=====================================================================
*/


public interface HexData
{
  public int getRowCount();
  public int getColumnCount();
  public int getLastRowSize();
  
  public byte getByte(int row, int col);
  public void setByte(int row, int col, byte value);
  public byte[] getRow(int row);
}

