mirror of
https://github.com/Cardidi/ca2d-unity-toolkit.git
synced 2025-12-20 01:06:03 +08:00
11 lines
219 B
C#
11 lines
219 B
C#
namespace Ca2d.Toolkit.Bootable
|
|
{
|
|
public struct BootDescription
|
|
{
|
|
public readonly string Id;
|
|
|
|
public readonly IBootCondition Condition;
|
|
|
|
public readonly IBootExecutor[] Executors;
|
|
}
|
|
} |