mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
16 lines
379 B
C#
16 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Milimoe.FunGame.Core.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Library.Constant
|
|
{
|
|
public class General
|
|
{
|
|
public static Empty EntityInstance { get; } = new();
|
|
public static Encoding DEFAULT_ENCODING { get; } = Encoding.UTF8;
|
|
}
|
|
}
|