mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 14:20:08 +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;
|
||
|
|
}
|