From ecdafeab0096250945199ae43ae9d79e856b1f60 Mon Sep 17 00:00:00 2001 From: edmand46 Date: Sun, 7 May 2023 18:16:46 +0300 Subject: [PATCH] :recycle: naming changing --- Ragon.Client/Sources/Entity/RagonEntity.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ragon.Client/Sources/Entity/RagonEntity.cs b/Ragon.Client/Sources/Entity/RagonEntity.cs index 06a3ccb..d9671f1 100644 --- a/Ragon.Client/Sources/Entity/RagonEntity.cs +++ b/Ragon.Client/Sources/Entity/RagonEntity.cs @@ -92,12 +92,12 @@ namespace Ragon.Client return payload; } - public T GetSpawnPayload() where T : IRagonPayload, new() + public T GetAttachPayload() where T : IRagonPayload, new() { return GetPayload(_spawnPayload); } - public T GetDestroyPayload() where T : IRagonPayload, new() + public T GetDetachPayload() where T : IRagonPayload, new() { return GetPayload(_destroyPayload); }