mirror of https://github.com/AbePralle/FGB.git
34 lines
715 B
C++
34 lines
715 B
C++
|
// PaletteButton.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "GBConv2.h"
|
||
|
#include "PaletteButton.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CPaletteButton
|
||
|
|
||
|
CPaletteButton::CPaletteButton()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CPaletteButton::~CPaletteButton()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
BEGIN_MESSAGE_MAP(CPaletteButton, CButton)
|
||
|
//{{AFX_MSG_MAP(CPaletteButton)
|
||
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CPaletteButton message handlers
|