Implemented dungeon selector
This commit is contained in:
parent
514d985ddb
commit
aeeb15cb12
46 changed files with 26355 additions and 32 deletions
|
|
@ -0,0 +1,13 @@
|
|||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
|
||||
namespace DungeonSelection
|
||||
{
|
||||
[CreateAssetMenu(fileName = "New Dungeon", menuName = "Dungeon")]
|
||||
public class DungeonData : ScriptableObject
|
||||
{
|
||||
public string DungeonName;
|
||||
public Sprite Thumbnail;
|
||||
public string SceneName;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue