DarkEmu_GameServer.Systems.CheckSpawned C# (CSharp) Method

CheckSpawned() public static method

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