place functions in cpp

stop cli bitching.....
This commit is contained in:
marauder2k7 2024-03-02 20:14:11 +00:00
parent 457cdd00bb
commit be0689549a
3 changed files with 110 additions and 0 deletions

View file

@ -38,3 +38,68 @@ ConsoleDocClass(GuiShaderEditor,
"Editor use only.\n\n"
"@internal"
);
GuiShaderEditor::GuiShaderEditor()
{
}
bool GuiShaderEditor::onWake()
{
return false;
}
void GuiShaderEditor::onSleep()
{
}
void GuiShaderEditor::initPersistFields()
{
}
bool GuiShaderEditor::onAdd()
{
return false;
}
void GuiShaderEditor::onRemove()
{
}
void GuiShaderEditor::onPreRender()
{
}
void GuiShaderEditor::onRender(Point2I offset, const RectI& updateRect)
{
}
bool GuiShaderEditor::onKeyDown(const GuiEvent& event)
{
return false;
}
void GuiShaderEditor::onMouseDown(const GuiEvent& event)
{
}
void GuiShaderEditor::onMouseUp(const GuiEvent& event)
{
}
void GuiShaderEditor::onMouseMove(const GuiEvent& event)
{
}
void GuiShaderEditor::onMiddleMouseDown(const GuiEvent& event)
{
}
bool GuiShaderEditor::onMouseWheelUp(const GuiEvent& event)
{
return false;
}
bool GuiShaderEditor::onMouseWheelDown(const GuiEvent& event)
{
return false;
}