Initial commit: client source

This commit is contained in:
Andreas Lierschaft
2026-08-17 20:03:02 +02:00
commit 9ae37cd0ea
869 changed files with 227899 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#pragma once
#include "Resource.h"
#include "Ref.h"
#include "GrpFontTexture.h"
class CGraphicText : public CResource
{
public:
typedef CRef<CGraphicText> TRef;
public:
static TType Type();
public:
CGraphicText(const char* c_szFileName);
virtual ~CGraphicText();
virtual bool CreateDeviceObjects();
virtual void DestroyDeviceObjects();
CGraphicFontTexture * GetFontTexturePointer();
protected:
bool OnLoad(int iSize, const void * c_pvBuf);
void OnClear();
bool OnIsEmpty() const;
bool OnIsType(TType type);
protected:
CGraphicFontTexture m_fontTexture;
};