DarkEmu_GameServer.Systems.CheckSpawned C# (CSharp) Méthode

CheckSpawned() public static méthode

public static CheckSpawned ( List Spawn, int id ) : bool
Spawn List
id int
Résultat bool
        public static bool CheckSpawned(List<int> Spawn, int id)
        {
            bool result = Spawn.Exists(
                    delegate(int bk)
                    {
                        return bk == id;
                    }
                    );
            return result;
        }
Systems