import { Clear, ExpandMore, Reply, ReplyAll } from "@mui/icons-material"; import { Accordion, AccordionDetails, AccordionSummary, Button, IconButton, MenuItem, Select, SelectChangeEvent, Typography, } from "@mui/material"; import React, { useState } from "react"; import { AugmentationNames } from "../../Augmentation/data/AugmentationNames"; import { Player } from "@player"; export function Augmentations(): React.ReactElement { const [augmentation, setAugmentation] = useState("Augmented Targeting I"); function setAugmentationDropdown(event: SelectChangeEvent): void { setAugmentation(event.target.value); } function queueAug(): void { Player.queueAugmentation(augmentation); } function queueAllAugs(): void { for (const augName of Object.values(AugmentationNames)) { Player.queueAugmentation(augName); } } function clearAugs(): void { Player.augmentations = []; } function clearQueuedAugs(): void { Player.queuedAugmentations = []; } return ( }> Augmentations ); }