DarkEmu_GameServer.Systems.CheckSpawned C# (CSharp) 메소드

CheckSpawned() 공개 정적인 메소드

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