14 lines
323 B
C
Raw Normal View History

#pragma once
#include <set>
#include <string>
#include "ConnectionPoint.h"
class Unlock{
friend class Crawler;
static std::set<std::string>unlocks;
static void Initialize();
public:
static void UnlockArea(std::string unlock);
static bool IsUnlocked(std::string unlock);
static bool IsUnlocked(ConnectionPoint&cp);
};