18 lines
397 B
C#
18 lines
397 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Monumet")]
|
|
[System.Serializable]
|
|
public class MonumentInfo : ScriptableObject
|
|
{
|
|
public bool AllMaps;
|
|
public string Name;
|
|
public string SceneName;
|
|
public Sprite Image;
|
|
[TextArea]
|
|
public string Description;
|
|
public GameObject MiniModel;
|
|
public float Score;
|
|
}
|