コード例 #1
0
ファイル: WorldFactory.cs プロジェクト: Sijak/SOSCSRPG
        private static void AddTrader(Location location, XmlNode traderHere)
        {
            if (traderHere == null)
            {
                return;
            }

            location.TraderHere = TraderFactory.GetTraderByName(traderHere.AttributeAsString("Name"));
        }
コード例 #2
0
ファイル: WorldFactory.cs プロジェクト: bbreindel/ShadowRPG
        private static void AddTrader(Location location, XmlNode traderHere)
        {
            if (traderHere == null)
            {
                return;
            }

            location.TraderHere =
                TraderFactory.GetTraderByID(traderHere.AttributeAsInt("ID"));
        }