public NativeResCallbackNode(bool single,string sceneName,string bundleName,string resName,ushort backMsgId,NativeResCallback callback,NativeResCallbackNode next)
	{
		this.isSingle = single;
		this.sceneName = sceneName;
		this.bundleName = bundleName;
		this.resName = resName;
		this.backMsgId = backMsgId;
		this.callback = callback;
		this.nextValue = nextValue;
	}
Exemple #2
0
 public NativeResCallbackNode(bool single, string sceneName, string bundleName, string resName, ushort backMsgId, NativeResCallback callback, NativeResCallbackNode next)
 {
     this.isSingle   = single;
     this.sceneName  = sceneName;
     this.bundleName = bundleName;
     this.resName    = resName;
     this.backMsgId  = backMsgId;
     this.callback   = callback;
     this.nextValue  = nextValue;
 }
	public void Dispose()
	{
		callback = null;
		nextValue = null;

		this.isSingle = false;
		this.sceneName = null;
		this.bundleName = null;
		this.resName = null;
		this.backMsgId = 0;
	}
Exemple #4
0
    public void Dispose()
    {
        callback  = null;
        nextValue = null;

        this.isSingle   = false;
        this.sceneName  = null;
        this.bundleName = null;
        this.resName    = null;
        this.backMsgId  = 0;
    }