12 lines
251 B
C#
12 lines
251 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "时间锁", menuName = "创建时间锁/配置文件")]
|
|
public class TimerLock : ScriptableObject
|
|
{
|
|
[Header("软件有效期")]
|
|
public string time;
|
|
|
|
}
|