提交项目

This commit is contained in:
2026-06-12 10:11:36 +08:00
commit 65acce7dde
5920 changed files with 629434 additions and 0 deletions
@@ -0,0 +1,32 @@
namespace LoveLegend
{
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;
}
}
}