camelot-unchained
Version:
Camelot Unchained Client Library
55 lines (44 loc) • 1.46 kB
text/typescript
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// Unit Frame
import UnitFrame from './unitframe/UnitFrame';
import Effects from './unitframe/components/Effects';
import HealthBar from './unitframe/components/HealthBar';
import HealthText from './unitframe/components/HealthText';
import Name from './unitframe/components/Name';
import Portrait from './unitframe/components/Portrait';
import StaminaBar from './unitframe/components/StaminaBar';
import StaminaText from './unitframe/components/StaminaText';
import Injuries from './unitframe/components/Injuries';
import Injury from './unitframe/components/Injury';
import InjuryLocation from './unitframe/components/InjuryLocation';
import InjuryBar from './unitframe/components/InjuryBar';
import InjuryText from './unitframe/components/InjuryText';
import InjuryWounds from './unitframe/components/InjuryWounds';
// Wound Frame
import WoundFrame from './woundframe/WoundFrame';
// Non-frame components
import QuickSelect from './quickselect/QuickSelect';
import Animate from './Animate';
export default {
UnitFrame,
Effects,
HealthBar,
HealthText,
Name,
Portrait,
StaminaBar,
StaminaText,
Injuries,
Injury,
InjuryLocation,
InjuryBar,
InjuryText,
InjuryWounds,
WoundFrame,
QuickSelect,
Animate,
}