I need an immutable tables on some enties so I though I would just create a BlobAssetReference to a BlobArray. Is this an abuse of power and the incorrect data type for the problem
public struct MyTableData
{
public int Width;
public int Height;
public BlobArray<int> TableData;
}