error cs1501 no overload for method invoke takes 1 arguments
public class SplashScree : MonoBehaviour {
// Use this for initialization
void Start () {
Invoke ("FristLevelLoad, 2f");
}
// Update is called once per frame
void FristLevelLoad () {
SceneManager.LoadScene(1);
}
}