NewSF64Toolkit.DataStructures.DMA.DMAFile.GetAsBytes C# (CSharp) 메소드

GetAsBytes() 공개 메소드

public GetAsBytes ( ) : byte[]
리턴 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);
 }