Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotrian committed Jun 23, 2016
1 parent 893b2b1 commit a3157fb
Showing 1 changed file with 1 addition and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using UnityEngine;
using UnityEngine.UI;

[RequireComponent(typeof(Dropdown))]
public class DropdownSaveLoadController : MonoBehaviour
{


public HOTK_Overlay OverlayToSave;

public InputField UsernameField;
Expand Down Expand Up @@ -42,7 +38,6 @@ public class DropdownSaveLoadController : MonoBehaviour
public Button SaveNewButton;
public Button CancelNewButton;


public Dropdown Dropdown
{
get { return _dropdown ?? (_dropdown = GetComponent<Dropdown>()); }
Expand All @@ -52,11 +47,6 @@ public Dropdown Dropdown

private static string NewString = "New..";

// Use this for initialization
void Start () {

}

public void OnEnable()
{
if (TwitchSettingsSaver.SavedSettings.Count == 0)
Expand Down Expand Up @@ -232,9 +222,4 @@ public void OnSaveNameChanged()
SaveNewButton.interactable = true;
}
}

// Update is called once per frame
void Update () {

}
}

0 comments on commit a3157fb

Please sign in to comment.