frame.cpp
来自「hl2 source code. Do not use it illegal.」· C++ 代码 · 共 27 行
CPP
27 行
/*----------------------------------------------------------------------
Copyright (c) 1998,1999 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.
File: Frame.cpp
Owner: russf@gipsysoft.com
Purpose: A single frame.
----------------------------------------------------------------------*/
#include "stdafx.h"
#include "ImgLibInt.h"
//#include <ImgLib.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CFrame::CFrame( CDib *pDib, int nTimeMilliseconds )
: m_pDib( pDib )
, m_nTimeMilliseconds( nTimeMilliseconds )
{
}
CFrame::~CFrame()
{
delete m_pDib;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?