1
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Serialization;
|
||||
|
||||
namespace Project.B.Map
|
||||
{
|
||||
@@ -11,16 +12,18 @@ namespace Project.B.Map
|
||||
[SerializeField] private string description;
|
||||
[SerializeField] private string author;
|
||||
[SerializeField] private string mapAddress;
|
||||
[SerializeField] private Texture overview;
|
||||
[FormerlySerializedAs("overview")] [SerializeField] private Texture loadingScreen;
|
||||
[SerializeField] private Sprite mapOverview;
|
||||
[SerializeField] private Vector2 offset;
|
||||
[SerializeField] private int size;
|
||||
public string MapName => mapName;
|
||||
public string Author => author;
|
||||
public string Description => description;
|
||||
public object Overview => overview;
|
||||
public object LoadingScreen => loadingScreen;
|
||||
public string MapAddress => mapAddress;
|
||||
public Vector2 Offset => offset;
|
||||
public int Size => size;
|
||||
public object MapOverview => mapOverview;
|
||||
}
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user