1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
//Prm.h
#pragma once
namespace Triad
{
using namespace System;
using namespace System::Windows::Forms;
public enum class Slots{
Slot1,
Slot2,
Slot3,
Slot4,
Slot5,
Slot6,
Slot7,
Slot8,
Slot9,
Slot10,
Slot11,
Slot12,
Slot13,
Slot14,
Slot15,
Slot16,
Slot17,
Slot18,
Slot19,
Slot20
};
public ref class Prm{
public:
Prm(){ errorCode = 0; handle = 0; }
virtual void Initialize(Slots slot){}
virtual void Reset(){}
};
}
|