// Update is called once per frame void Update() { if (Input.GetKeyDown(KeyCode.Z)) { map.Del(); } if (Input.GetKey(KeyCode.X)) { map.NewLine(true); } }
void Old() { map.Del(); }