rabidus-test/Assets/Scripts/MonumentInfo.cs

18 lines
397 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "Monumet")]
2023-08-22 17:17:54 +03:00
[System.Serializable]
public class MonumentInfo : ScriptableObject
{
2023-10-02 19:12:35 +03:00
public bool AllMaps;
2023-08-15 17:38:54 +03:00
public string Name;
2023-09-11 15:44:17 +03:00
public string SceneName;
2023-08-15 17:38:54 +03:00
public Sprite Image;
[TextArea]
2023-08-15 17:38:54 +03:00
public string Description;
public GameObject MiniModel;
public float Score;
}