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