mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
17 lines
291 B
C#
17 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
public static class Code
|
|
{
|
|
public static readonly NilType nil = default;
|
|
}
|
|
|
|
|
|
public readonly struct NilType { }
|
|
}
|