mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Mark classes as ‘final’
--HG-- branch : minor
This commit is contained in:
@@ -34,7 +34,7 @@ namespace graphics
|
||||
namespace opengl
|
||||
{
|
||||
|
||||
class Image : public love::graphics::Image, public Volatile
|
||||
class Image final : public love::graphics::Image, public Volatile
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace graphics
|
||||
namespace opengl
|
||||
{
|
||||
|
||||
class Mesh : public love::graphics::Mesh
|
||||
class Mesh final : public love::graphics::Mesh
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ namespace graphics
|
||||
namespace opengl
|
||||
{
|
||||
|
||||
class SpriteBatch : public love::graphics::SpriteBatch
|
||||
class SpriteBatch final : public love::graphics::SpriteBatch
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
@@ -77,7 +77,7 @@ private:
|
||||
|
||||
}; // StreamBufferClientMemory
|
||||
|
||||
class StreamBufferSubDataOrphan : public love::graphics::StreamBuffer, public Volatile
|
||||
class StreamBufferSubDataOrphan final : public love::graphics::StreamBuffer, public Volatile
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user