fix: DebuggerDisplay Wrongly Typed Parameters

This commit is contained in:
2024-01-27 21:05:56 +03:00
parent 6a104d8abd
commit 69eca44dd8
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ using Syntriax.Engine.Core.Abstract;
namespace Syntriax.Engine.Core;
[System.Diagnostics.DebuggerDisplay("Behaviour Count: {behaviours.Count()}")]
[System.Diagnostics.DebuggerDisplay("Behaviour Count: {behaviours.Count}")]
public class BehaviourController : IBehaviourController
{
public Action<IBehaviourController>? OnPreUpdate { get; set; }