mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-13 03:32:22 -04:00
17 lines
358 B
C#
17 lines
358 B
C#
using DBDefsLib;
|
|
using System;
|
|
|
|
namespace DBDefsTest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var reader = new DBDReader();
|
|
var definition = reader.Read("../../../definitions/Map.dbd");
|
|
Console.WriteLine("Done, press enter to exit");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|