23 lines
541 B
C#
23 lines
541 B
C#
using System;
|
|
using SepCore.DataTable;
|
|
using SepCore.Definition;
|
|
|
|
namespace Entity.EntityData
|
|
{
|
|
[Serializable]
|
|
public sealed class WeaponHandgunParamsData
|
|
{
|
|
}
|
|
|
|
public class WeaponHandgunData : WeaponData
|
|
{
|
|
public WeaponHandgunParamsData ParamsData { get; }
|
|
|
|
public WeaponHandgunData(int entityId, DRWeapon drWeapon, int ownerId, CampType ownerCamp)
|
|
: base(entityId, drWeapon, ownerId, ownerCamp)
|
|
{
|
|
ParamsData = ParseParams<WeaponHandgunParamsData>();
|
|
}
|
|
}
|
|
}
|