C# 클래스 Glare.Assets.BinaryAsset

A fallback for loading Assets that just contains binary data.
상속: Asset
파일 보기 프로젝트 열기: Burton-Radons/Alexandria 1 사용 예제들

공개 메소드들

메소드 설명
BinaryAsset ( AssetManager manager, string name, IList data, int displayOffset ) : System

Initialise the asset.

BinaryAsset ( AssetManager manager, string name, IList data, int start, int count, int displayOffset ) : System

Initialise the asset.

Browse ( Action progressUpdateCallback = null ) : Control

Make a hex browser for the data.

this ( int index ) : byte

Get a byte of the data.

메소드 상세

BinaryAsset() 공개 메소드

Initialise the asset.
public BinaryAsset ( AssetManager manager, string name, IList data, int displayOffset ) : System
manager AssetManager
name string
data IList
displayOffset int
리턴 System

BinaryAsset() 공개 메소드

Initialise the asset.
public BinaryAsset ( AssetManager manager, string name, IList data, int start, int count, int displayOffset ) : System
manager AssetManager
name string
data IList
start int
count int
displayOffset int
리턴 System

Browse() 공개 메소드

Make a hex browser for the data.
public Browse ( Action progressUpdateCallback = null ) : Control
progressUpdateCallback Action
리턴 System.Windows.Forms.Control

this() 공개 메소드

Get a byte of the data.
public this ( int index ) : byte
index int
리턴 byte