This commit is contained in:
JA
2026-06-20 19:34:23 +08:00
parent e5031c0068
commit d442805c3f
4136 changed files with 514641 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class PollObject
{
//对象
public Object Object;
//对象名
public string Name;
//最后一次的使用时间,记录销毁
public System.DateTime lastUserTime;
public PollObject(string name, Object obj)
{
Name = name;
Object = obj;
lastUserTime = System.DateTime.Now;
}
}