mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
31 lines
592 B
C++
31 lines
592 B
C++
//
|
|
// SelectStatePane.xaml.h
|
|
// Declaration of the SelectStatePane class
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "SelectStatePane.g.h"
|
|
|
|
using namespace Windows::Foundation::Collections;
|
|
|
|
namespace VBA10
|
|
{
|
|
|
|
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class SelectStatePane sealed
|
|
{
|
|
public:
|
|
SelectStatePane(int selectedSlot);
|
|
private:
|
|
bool initdone;
|
|
|
|
IVector<Platform::String ^> ^savestateVector;
|
|
|
|
void Init(void);
|
|
|
|
void savestateList_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e);
|
|
};
|
|
}
|