chore: disabled all ImplicitUsings

This commit is contained in:
2025-05-03 20:41:26 +03:00
parent 3725a3b0fd
commit 98edbe1af5
7 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Syntriax.Engine.Systems.StateMachine;
public readonly record struct StateTransition(IState State, IReadOnlyList<Func<bool>> Conditions)