Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
// MultitronView.h : interface of the CMultitronView class
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_MULTITRONVIEW_H__A172B339_61A8_4DC7_958C_FD577FB06666__INCLUDED_)
|
|
#define AFX_MULTITRONVIEW_H__A172B339_61A8_4DC7_958C_FD577FB06666__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "MultitronDlg.h"
|
|
|
|
class CMultitronView : public CView
|
|
{
|
|
protected: // create from serialization only
|
|
CMultitronView();
|
|
DECLARE_DYNCREATE(CMultitronView)
|
|
|
|
// Attributes
|
|
public:
|
|
CMultitronDoc* GetDocument();
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMultitronView)
|
|
public:
|
|
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
virtual void OnInitialUpdate();
|
|
protected:
|
|
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
|
|
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CMultitronView();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
protected:
|
|
CMultitronDlg m_dlgMultitron;
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CMultitronView)
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#ifndef _DEBUG // debug version in MultitronView.cpp
|
|
inline CMultitronDoc* CMultitronView::GetDocument()
|
|
{ return (CMultitronDoc*)m_pDocument; }
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_MULTITRONVIEW_H__A172B339_61A8_4DC7_958C_FD577FB06666__INCLUDED_)
|