ict.shenzhi/Assets/Evereal/VideoCapture/Scripts/Internal/FreeTrial.cs

16 lines
287 B
C#

/* Copyright (c) 2019-present Evereal. All rights reserved. */
namespace Evereal.VideoCapture
{
/// <summary>
/// Free trial version.
/// </summary>
public class FreeTrial
{
// Check free trial version
public static bool Check()
{
return true;
}
}
}