mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
152 B
C++
10 lines
152 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pSizable : public pObject {
|
||
|
Sizable &sizable;
|
||
|
|
||
|
pSizable(Sizable &sizable) : pObject(sizable), sizable(sizable) {}
|
||
|
};
|
||
|
|
||
|
}
|