GeoJam2021/Assets/Scripts/SpawnStorage.cs
2021-07-21 09:33:24 +02:00

16 lines
285 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SpawnStorage : MonoBehaviour
{
// Start is called before the first frame update
public Vector3 spawnpoint;
void Start()
{
spawnpoint = transform.position;
}
}