14 lines
323 B
C
14 lines
323 B
C
|
#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);
|
||
|
};
|