Predict folding (#19663)

This commit is contained in:
metalgearsloth
2023-08-31 11:56:13 +10:00
committed by GitHub
parent d74649abd4
commit 1b336d63bb
6 changed files with 165 additions and 196 deletions

View File

@@ -23,7 +23,7 @@ public abstract partial class SharedFultonSystem : EntitySystem
[Dependency] private readonly MetaDataSystem _metadata = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
[Dependency] private readonly SharedDoAfterSystem _doAfter = default!;
[Dependency] private readonly SharedFoldableSystem _foldable = default!;
[Dependency] private readonly FoldableSystem _foldable = default!;
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly SharedStackSystem _stack = default!;
[Dependency] protected readonly SharedTransformSystem TransformSystem = default!;