DarkEmu_GameServer.spez_obj.Spawned C# (CSharp) Method

Spawned() public method

public Spawned ( int id ) : bool
id int
return bool
        public bool Spawned(int id)
        {
            bool result = Spawn.Exists(
                    delegate(int bk)
                    {
                        return bk == id;
                    }
                    );
            return result;
        }