예제 #1
0
    private void Awake()
    {
        if (_instance != null && _instance != this)
        {
            Destroy(this.gameObject);
        }
        else
        {
            _instance = this;
        }

        // if file is not existed, create data file
        CSVManager.CreateData();

        Cursor.visible = false;
    }