Remove redundant prefix from libcockatrice_card folders (#6237)

Took 28 minutes
This commit is contained in:
RickyRister 2025-10-09 14:09:20 -07:00 committed by GitHub
parent 14e6e6eff4
commit 636aa72141
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
120 changed files with 168 additions and 168 deletions

View file

@ -0,0 +1,12 @@
#include "card_database_manager.h"
CardDatabase *CardDatabaseManager::getInstance()
{
static CardDatabase instance; // Created only once, on first access
return &instance;
}
CardDatabaseQuerier *CardDatabaseManager::query()
{
return getInstance()->query();
}