This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added lumin platform definition (#52)
* added lumin platform definition * bumped version numbers * updated packages
- Loading branch information
1 parent
d1338d6
commit c7b17dc
Showing
3 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) XRTK. All rights reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
namespace XRTK.Definitions.Platforms | ||
{ | ||
/// <summary> | ||
/// Used by the XRTK to signal that the feature is available on the Lumin platform. | ||
/// </summary> | ||
public class LuminPlatform : BasePlatform | ||
{ | ||
/// <inheritdoc /> | ||
public override bool IsAvailable | ||
{ | ||
get | ||
{ | ||
#if PLATFORM_LUMIN | ||
return true; | ||
#else | ||
return false; | ||
#endif | ||
} | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters