public ReplayUploader(Mod m, Record r) { this.m = m; this.toUpload = r; Thread uploadThread = new Thread(new ThreadStart(Upload)); uploadThread.Start(); }
public void ItemClicked(UIListPopup popup, Item card) { //player.LaunchReplay (((Record)card).fileName()); selectedRecord = (Record)card; //App.Popups.ShowMultibutton(this, "Replayer", card.getDesc(), new string[] { "Play", "Share", "Delete" }); App.Popups.ShowMultibutton(this, "Replayer", card.getDesc(), new GUIContent[] { new GUIContent("Play"), new GUIContent("Share"), new GUIContent("Delete") }); }