Files
caliverse_server/GameServer/Entity/Item/Owner/UgcNpc/UgcNpcItemAction.cs
2025-05-01 07:20:41 +09:00

22 lines
305 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GameServer
{
public class UgcNpcItemAction : ItemAction
{
public UgcNpcItemAction(UgcNpcItem owner)
: base(owner)
{
}
}
}