// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Mono Runtime Version: 2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// ------------------------------------------------------------------------------
namespace TableConfig
{
using System;
using System.Collections.Generic;
public partial class ActorShowConfig : ConfigBase, IConfigPostProcess
{
private static Dictionary actorShowDic = new Dictionary();
public void OnConfigParseCompleted()
{
string key = StringUtility.Contact(MapID, NpcID);
if (!actorShowDic.ContainsKey(key))
{
actorShowDic.Add(key, this);
}
}
public static bool GetActorShowModel(int mapID, int npcID, out ActorShowConfig actorShowModel)
{
string key = StringUtility.Contact(mapID, npcID);
if (actorShowDic.TryGetValue(key, out actorShowModel))
{
return true;
}
return false;
}
}
}