public SteamRandomGetIsoProcess(GetRandomIsoListCallBackEventHandler callback, int amount, int dungeonId, string tag)
 {
     GetRandomIsoListCallBackEvent = callback;
     _getAmount = amount;
     string [] tags = new string[2];
     tags[0] = SteamWorkShop.NewVersionTag;
     tags[1] = tag;
     GetTotalCount(1, tags);
     _tags      = tags;
     _dungeonId = dungeonId;
 }
Beispiel #2
0
    public void RandomGetIsosFromWorkShop(GetRandomIsoListCallBackEventHandler callback, int amount, int dungeonId, string tag)
    {
        SteamRandomGetIsoProcess item = new SteamRandomGetIsoProcess(callback, amount, dungeonId, tag);

        ProcessList.Add(item);
    }