using UnityEngine;
using System.Collections;
public class CsButton : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
//버튼이 눌렸을 때 불려질 함수
//접근을 public으로 하는 이유는 외부에서 접근 가능해야 하기때문입니.다
public void StartGame()
{
//게임화면 씬을 불러옵니다.
Application.LoadLevel(1);
}
}