34 lines
627 B
C#
34 lines
627 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2025年09月05日 星期五 15:09:09
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using MemoryPack;
|
|
|
|
|
|
namespace TH1_Logic.HeroTask
|
|
{
|
|
[MemoryPackable]
|
|
public partial class HeroTaskItem
|
|
{
|
|
public UnitType UnitType;
|
|
public GiantType GiantType;
|
|
public uint Level;
|
|
public HeroTaskContentBase Content;
|
|
|
|
|
|
[MemoryPackConstructor]
|
|
public HeroTaskItem()
|
|
{
|
|
|
|
}
|
|
|
|
public HeroTaskContentBase GetCopyHeroTaskContentBase()
|
|
{
|
|
return Content.GetCopyHeroTaskContent();
|
|
}
|
|
}
|
|
} |