23 lines
371 B
C#
23 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace cfclient.Mt
|
|
{
|
|
class Equip : Mtb.Equip
|
|
{
|
|
}
|
|
|
|
class EquipTable :F6.IdMetaTable<Equip>
|
|
{
|
|
|
|
public EquipTable(string fileName, string primKey):base(fileName, primKey)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|