Files
o3de/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp
T
2021-06-23 10:55:22 -07:00

25 lines
434 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "ImGui_precompiled.h"
#include "ImGuiLYCurveEditor.h"
#ifdef IMGUI_ENABLED
namespace ImGui
{
ImGuiCurveEditor::~ImGuiCurveEditor()
{
}
void ImGuiCurveEditor::CreateCurveEditor(const char * label, float * points, int num_points, int max_points)
{
}
} // namespace ImGui
#endif