From cdd41e42b2764082d4531d87a8657d6ac946ac08 Mon Sep 17 00:00:00 2001 From: Christopher Whitley Date: Thu, 30 May 2024 12:05:29 -0400 Subject: [PATCH] Mark `IsContentLost` obsolete --- MonoGame.Framework/Graphics/Vertices/DynamicVertexBuffer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MonoGame.Framework/Graphics/Vertices/DynamicVertexBuffer.cs b/MonoGame.Framework/Graphics/Vertices/DynamicVertexBuffer.cs index 55e940444dd..05a31a0a8f2 100644 --- a/MonoGame.Framework/Graphics/Vertices/DynamicVertexBuffer.cs +++ b/MonoGame.Framework/Graphics/Vertices/DynamicVertexBuffer.cs @@ -29,6 +29,7 @@ public class DynamicVertexBuffer : VertexBuffer /// /// This property will always return false. It is included for XNA compatibility. /// + [Obsolete("This is provided for XNA compatibility only and will always return false")] public bool IsContentLost { get { return false; } } ///