Britbot
static Britbot.SmartIsland.SmartIsland ( ) [inline, static, private]

A static constructor which initializes the static island list on the first reference to a SmartIsland.

Definition at line 98 of file SmartIsland.cs.

        {
            SmartIsland.IslandList = new List<SmartIsland>();
            foreach (Island island in Bot.Game.Islands())
            {
                SmartIsland.IslandList.Add(new SmartIsland(island.Id));
            }
        }