Added Exposed var reset button

This commit is contained in:
Antoine Pilote
2024-08-15 19:44:17 -04:00
parent 901ebcf902
commit 04926476d7
5 changed files with 52 additions and 22 deletions

View File

@@ -188,13 +188,12 @@ namespace Nuake.Net
public static implicit operator bool(Entity entity)
{
bool isValid = false;
if(object.ReferenceEquals(entity, null))
if (object.ReferenceEquals(entity, null))
{
return false;
}
bool isValid;
unsafe
{
isValid = EntityIsValidIcall(entity.ECSHandle);