interface ISharedSpaceRoomOptions
(Niantic.Lightship.SharedAR.Colocalization.ISharedSpaceRoomOptions)
概要
共有スペースで使用するルームの設定
interface ISharedSpaceRoomOptions {
		// properties
	
		IRoom Room;
		// メソッド
	
		static ISharedSpaceRoomOptions CreateVpsRoomOptions(
			ISharedSpaceTrackingOptions trackingVpsLocation,
			string roomTag = "",
			int capacity = 10,
			string description = "",
			bool useNetcode = true
		);
	
		static ISharedSpaceRoomOptions CreateLightshipRoomOptions(
			string name,
			int capacity = 10,
			string description = "",
			bool useNetcode = true
		);
	
		static ISharedSpaceRoomOptions CreateCustomRoomOptions();
	};