2015-08-19 15:11:15 +00:00
|
|
|
class asdg_SlotInfo;
|
|
|
|
class asdg_FrontSideRail: asdg_SlotInfo {
|
|
|
|
class compatibleItems {
|
|
|
|
ACE_acc_pointer_red = 1;
|
|
|
|
ACE_acc_pointer_green = 1;
|
|
|
|
ACE_acc_pointer_green_IR = 1;
|
|
|
|
};
|
|
|
|
};
|
2019-10-02 08:54:24 +00:00
|
|
|
|
2023-09-19 19:29:13 +00:00
|
|
|
class SlotInfo;
|
|
|
|
class PointerSlot: SlotInfo {
|
|
|
|
compatibleItems[] += {
|
|
|
|
"ACE_acc_pointer_red",
|
|
|
|
"ACE_acc_pointer_green_IR",
|
|
|
|
"ACE_acc_pointer_green"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-10-02 08:54:24 +00:00
|
|
|
class PointerSlot_Rail: PointerSlot {
|
|
|
|
class compatibleItems {
|
|
|
|
ACE_acc_pointer_red = 1;
|
|
|
|
ACE_acc_pointer_green = 1;
|
|
|
|
ACE_acc_pointer_green_IR = 1;
|
|
|
|
};
|
|
|
|
};
|