This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

32
Editor/AIAnchorsDialog.h Normal file
View File

@@ -0,0 +1,32 @@
#pragma once
// CAIAnchorsDialog dialog
class CAIAnchorsDialog : public CDialog
{
DECLARE_DYNAMIC(CAIAnchorsDialog)
private:
CString m_sAnchor;
CListBox m_wndAnchorsList;
public:
CAIAnchorsDialog(CWnd* pParent = NULL); // standard constructor
virtual ~CAIAnchorsDialog();
void SetAIAnchor(const CString &sAnchor) { m_sAnchor=sAnchor; }
CString GetAIAnchor() { return m_sAnchor; };
// Dialog Data
enum { IDD = IDD_AIANCHORS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
afx_msg void OnLbnSelchangeAnchors();
public:
virtual BOOL OnInitDialog();
};