21 lines
579 B
C#
21 lines
579 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
[Serializable]
|
|
public class MateriSpec
|
|
{
|
|
[SerializeField] protected string _name;
|
|
[TextArea]
|
|
[SerializeField] protected string _description;
|
|
[SerializeField] protected string _sceneName;
|
|
[SerializeField] protected string _id;
|
|
[SerializeField] protected Sprite _image;
|
|
|
|
public string Name => _name;
|
|
public string Description => _description;
|
|
public string SceneName => _sceneName;
|
|
public string Id => _id;
|
|
public Sprite Image => _image;
|
|
}
|