mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
22 lines
495 B
C#
22 lines
495 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
||
// SPDX-License-Identifier: Apache-2.0
|
||
|
||
namespace GFramework.Core.Environment;
|
||
|
||
/// <summary>
|
||
/// 默认环境实现类,继承自EnvironmentBase
|
||
/// </summary>
|
||
public class DefaultEnvironment : EnvironmentBase
|
||
{
|
||
/// <summary>
|
||
/// 获取环境名称
|
||
/// </summary>
|
||
public override string Name { get; } = "Default";
|
||
|
||
/// <summary>
|
||
/// 初始化环境
|
||
/// </summary>
|
||
public override void Initialize()
|
||
{
|
||
}
|
||
} |