16 lines
338 B
C#
16 lines
338 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(fileName = "Monumet")]
|
||
|
public class MonumentInfo : ScriptableObject
|
||
|
{
|
||
|
public readonly string Name;
|
||
|
public readonly Sprite Image;
|
||
|
[TextArea]
|
||
|
public readonly string Description;
|
||
|
|
||
|
[HideInInspector]
|
||
|
public float Score;
|
||
|
}
|