MCSharp.World.Map.Exists C# (CSharp) Method

Exists() public static method

public static Exists ( string name ) : bool
name string
return bool
        public static bool Exists(string name)
        {
            return (File.Exists("levels/" + name + ".lvl") || File.Exists("levels/" + name + ".lvl.backup"));
        }