mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-25 01:50:57 +01:00
Also fixed newlines, CellSailEvent, fixed CellMusic changes, fixed console_write, fixed L10n changes and removed the login dialog for now, until a more proper implementation.
13 lines
232 B
C++
13 lines
232 B
C++
#pragma once
|
|
|
|
#include "Emu/SysCalls/Modules/cellNetCtl.h"
|
|
|
|
class SignInDialogFrame : public SignInDialogInstance
|
|
{
|
|
std::unique_ptr<wxDialog> m_dialog;
|
|
|
|
public:
|
|
virtual void Create() override;
|
|
virtual void Destroy() override;
|
|
};
|