22 lines
396 B
C++
22 lines
396 B
C++
#pragma once
|
|
//#include "KUIControl.h"
|
|
|
|
class KUIControlNumber : public KUIControl
|
|
{
|
|
public:
|
|
KUIControlNumber();
|
|
virtual ~KUIControlNumber();
|
|
|
|
void SetGap(int Gap);
|
|
void SetNumber(DWORD dwNumber);
|
|
|
|
virtual void UpdateBack();
|
|
|
|
protected:
|
|
virtual void _initControl();
|
|
protected:
|
|
int m_nGap;
|
|
DWORD m_dwNumber;
|
|
int m_nPrimitiveCount;
|
|
std::vector<KSpritePrimitive*> m_vtPrNumberAdoptor;
|
|
}; |