mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 15:14:37 +02:00

Added an 'add mods' button to the version page Add jar mods now has a very angry nag dialog until it's used successfully Buttons on version page are rearranged to deemphasize jar mods
9 lines
130 B
C++
9 lines
130 B
C++
#pragma once
|
|
|
|
class BasePageContainer
|
|
{
|
|
public:
|
|
virtual ~BasePageContainer(){};
|
|
virtual bool selectPage(QString pageId) = 0;
|
|
};
|