Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
650 B
C++
26 lines
650 B
C++
// KeyBar.h: interface for the CKeyBar class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_KEYBAR_H__50B9697B_67A3_4B6C_BCF6_2A126B804584__INCLUDED_)
|
|
#define AFX_KEYBAR_H__50B9697B_67A3_4B6C_BCF6_2A126B804584__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "DialogBarEx.h"
|
|
#include "KeySheet.h" // Added by ClassView
|
|
|
|
class CKeyBar : public CDialogBarEx
|
|
{
|
|
public:
|
|
CKeySheet *m_lpKeySheet;
|
|
CKeyBar();
|
|
virtual ~CKeyBar();
|
|
virtual void Destory();
|
|
virtual void OnInitDialogBar();
|
|
};
|
|
|
|
#endif // !defined(AFX_KEYBAR_H__50B9697B_67A3_4B6C_BCF6_2A126B804584__INCLUDED_)
|