16 lines
457 B
C#
16 lines
457 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.CameraSystem
|
|
{
|
|
/// <summary>
|
|
/// Base class used to derive custom camera settings profiles.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class BaseCameraSettingsProfile : BaseMixedRealityProfile
|
|
{
|
|
// This class is intentionally blank. It exists for future expansion of common functionality.
|
|
}
|
|
} |