22 lines
472 B
C#
22 lines
472 B
C#
using Google.Protobuf;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
using ServerCommon.BusinessLogDomain;
|
|
using MetaAssets;
|
|
|
|
|
|
namespace GameServer;
|
|
|
|
public class CaliumContentAction : EntityActionBase
|
|
{
|
|
public CaliumContentAction(CaliumStorageEntity owner) : base(owner) { }
|
|
|
|
public override async Task<Result> onInit() => await Task.FromResult(new Result());
|
|
|
|
public override void onClear() {}
|
|
|
|
} |