You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb Henrik.Karlsson #preflight 64763f524b0d5a1eb1e81c38 [CL 25683741 by joe kirchoff in ue5-main branch]
20 lines
373 B
C#
20 lines
373 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
|
|
namespace EpicGames.Box
|
|
{
|
|
/// <summary>
|
|
/// Box utils
|
|
/// </summary>
|
|
public static partial class Utils
|
|
{
|
|
static Lazy<bool> Available { get; set; } = new Lazy<bool>(() => false);
|
|
|
|
/// <summary>
|
|
/// Is box available?
|
|
/// </summary>
|
|
public static bool IsAvailable() => Available.Value;
|
|
}
|
|
}
|