提交项目

This commit is contained in:
2026-05-28 15:23:36 +08:00
commit 3cfc77d12b
5726 changed files with 554351 additions and 0 deletions
@@ -0,0 +1,32 @@
namespace ZooMatch
{
using System.Collections.Generic;
public class JoastModel : BaseModel
{
protected override void OnInit()
{
}
protected override void OnDispose()
{
}
private Queue<JoastData> tipsDatas = new Queue<JoastData>();
public void AddTips(JoastData joastData)
{
if (tipsDatas.Count > 0)
{
return;
}
tipsDatas.Enqueue(joastData);
}
public JoastData GetTips()
{
return tipsDatas.Count > 0 ? tipsDatas.Dequeue() : null;
}
}
}