Example #1
0
        public static void DoOccupy(object obj)
        {
            object[] objs = obj as object[];
            VvVBattle battle = objs[0] as VvVBattle;
            Guild g = objs[1] as Guild;

            if (battle != null && g != null)
                battle.OccupyAltar(g);
        }