ringhopper 0.1.3

Library for modding Halo: Combat Evolved
Documentation
//! Engine specific functionality, including types and functions.

pub mod h1;

/// Message types for [`HUDMessageTextElement`](crate::engines::h1::definitions::HUDMessageTextElement) elements.
pub const HUD_MESSAGE_ELEMENT_TYPES: &'static [&'static str] = &[
    "a-button",
    "b-button",
    "x-button",
    "y-button",
    "black-button",
    "white-button",
    "left-trigger",
    "right-trigger",
    "dpad-up",
    "dpad-down",
    "dpad-left",
    "dpad-right",
    "start-button",
    "back-button",
    "left-thumb",
    "right-thumb",
    "left-stick",
    "right-stick",
    "action",
    "throw-grenade",
    "primary-trigger",
    "integrated-light",
    "jump",
    "use-equipment",
    "rotate-weapons",
    "rotate-grenades",
    "zoom",
    "crouch",
    "accept",
    "back",
    "move",
    "look",
    "custom-1",
    "custom-2",
    "custom-3",
    "custom-4",
    "custom-5",
    "custom-6",
    "custom-7",
    "custom-8"
];