struct ImVec2ih

Overview

#include <imgui_internal.h>

struct ImVec2ih
{
    // fields

    short x;
    short y;

    // construction

    ImVec2ih();

    ImVec2ih(
        short _x,
        short _y
        );

    ImVec2ih(const ImVec2& rhs);
};