mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01:00
12 lines
181 B
C++
12 lines
181 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "SPURSManager.h"
|
||
|
|
|
||
|
|
SPURSManager::SPURSManager(SPURSManagerAttribute *attr)
|
||
|
|
{
|
||
|
|
this->attr = attr;
|
||
|
|
}
|
||
|
|
|
||
|
|
void SPURSManager::Finalize()
|
||
|
|
{
|
||
|
|
delete this->attr;
|
||
|
|
}
|