literally half of the game
This commit is contained in:
parent
1590b5faa6
commit
b842289076
77 changed files with 11904 additions and 72 deletions
16
Assets/Scripts/Map.cs
Normal file
16
Assets/Scripts/Map.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Map : MonoBehaviour
|
||||
{
|
||||
public List<NPC> npcs = new();
|
||||
public GameObject mapObject;
|
||||
public List<Enemy> enemies = new();
|
||||
public List<GatheringSpot> gatheringSpots = new();
|
||||
public List<Transform> exits;
|
||||
public void Load()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue