mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-24 06:05:24 +01:00
7 lines
80 B
C
7 lines
80 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Decoder
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual void Decode(const u32 code)=0;
|
||
|
|
};
|