using UnityEngine;
///
/// Script managing the default 'back'-button action
///
public class BackButton : MonoBehaviour
{
///
/// The default 'back'-button action: go back to the previous scene
///
public void Back()
{
SystemController.GetInstance().BackToPreviousScene();
}
}