about summary refs log tree commit diff stats
path: root/data/maps/the_plaza/rooms/Sirenic Entrance.txtpb
blob: 524de2b8e75ba1142ecdaa7d568fb5b8e60cfbf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: "Sirenic Entrance"
panels {
  name: "SIREN"
  path: "Panels/Entrances/panel_8"
  clue: "siren"
  answer: "sirenic"
  symbols: SPARKLES
}
ports {
  name: "SIRENIC"
  display_name: "Sirenic Entrance"
  path: "Components/Warps/worldport6"
  destination { x: -51 y: 0 z: -43 }
  rotation: 270
}
n class="nc">_Unique_if { typedef unique_ptr<T> _Single_object; }; template<class T> struct _Unique_if<T[]> { typedef unique_ptr<T[]> _Unknown_bound; }; template<class T, size_t N> struct _Unique_if<T[N]> { typedef void _Known_bound; }; template<class T, class... Args> typename _Unique_if<T>::_Single_object make_unique(Args&&... args) { return unique_ptr<T>(new T(std::forward<Args>(args)...)); } template<class T> typename _Unique_if<T>::_Unknown_bound make_unique(size_t n) { typedef typename remove_extent<T>::type U; return unique_ptr<T>(new U[n]()); } template<class T, class... Args> typename _Unique_if<T>::_Known_bound make_unique(Args&&...) = delete; }