mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
37 lines
834 B
C++
37 lines
834 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
// EntitySelectionListBox.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "EntitySelectionListBox.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef new
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CEntitySelectionListBox
|
|
|
|
CEntitySelectionListBox::CEntitySelectionListBox()
|
|
{
|
|
}
|
|
|
|
CEntitySelectionListBox::~CEntitySelectionListBox()
|
|
{
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CEntitySelectionListBox, CCheckListBox)
|
|
//{{AFX_MSG_MAP(CEntitySelectionListBox)
|
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CEntitySelectionListBox message handlers
|
|
|