NewSF64Toolkit.DataStructures.DMA.DMAFile.GetAsBytes C# (CSharp) Method

GetAsBytes() public method

public GetAsBytes ( ) : byte[]
return byte[]
        public virtual byte[] GetAsBytes()
        {
            byte[] bytes = _dmaData.GetAsBytes();
            //_f3dexData.AddBytesTo(bytes);
            return bytes;
        }

Usage Example

示例#1
0
 //NOTE: We should make a way to clean up [DELETE] the old GL display lists
 public int[] ReadGameObject(DMAFile dma, uint fullOffset)
 {
     return ReadGameObject(dma, dma.GetAsBytes(), fullOffset);
 }