1
This commit is contained in:
22
Src/GameService/ScriptableGameMapData.cs
Normal file
22
Src/GameService/ScriptableGameMapData.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
#if UNITY_5_3_OR_NEWER
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Project.B.Map
|
||||
{
|
||||
public class ScriptableGameMapData : ScriptableObject,IGameMapData
|
||||
{
|
||||
[SerializeField] private string mapName;
|
||||
[SerializeField] private string description;
|
||||
[SerializeField] private string author;
|
||||
[SerializeField] private string mapAddress;
|
||||
[SerializeField] private Texture overview;
|
||||
public string MapName => mapName;
|
||||
public string Author => author;
|
||||
public string Description => description;
|
||||
public object Overview => overview;
|
||||
public string MapAddress => mapAddress;
|
||||
}
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user