view NewUI/MainMenu.cpp @ 2152:d44b7775fc06

Removed DirectDraw2 compatibility. 3D Sound enabled (change 3DSoundProvider registry entry to activate it). Moved all forward declarations to mm7_unsorted_subs.h (many cpp files do not need them anyweay).
author Nomad
date Thu, 09 Jan 2014 01:37:34 +0200
parents c1c74df0a33e
children aff7a7b072b7
line wrap: on
line source

#include "MainMenu.h"è
#include "..\LOD.h"

bool MainMenuWindow::OnMouseLeftClick(int x, int y)
{
  if (UIControl::OnMouseLeftClick(x, y))
    return true;
  return false;
}

bool MainMenuWindow::OnMouseRightClick(int x, int y)
{
  if (UIControl::OnMouseRightClick(x, y))
    return true;
  return false;
}

bool MainMenuWindow::OnKey(int key)
{
  if (UIControl::OnKey(key))
    return true;
  return false;
}


void MainMenuWindow::Show() {}
bool MainMenuWindow::Focused() {return false;}

bool MainMenuWindow::Initialize()
{
  RGBTexture* background_texture = new RGBTexture;
  background_texture->Load("mm6title.pcx", 0);
  return true;
}

MainMenuWindow *MainMenuWindow::Create()
{
  MainMenuWindow* window = new MainMenuWindow;
  if (window)
    if (!window->Initialize())
    {
      delete window;
      window = nullptr;
    }
  return window;
}