My Project
qtextoption.h
1 #pragma once
2 
3 namespace ParaEngine
4 {
34  {
35  public:
36  QTextOption() :m_dwFormat(0) {};
37  QTextOption(DWORD dwFormat) : m_dwFormat(dwFormat) {};
38 
40  operator DWORD() const {
41  return m_dwFormat;
42  }
43  protected:
44  DWORD m_dwFormat;
45  };
46 }
different physics engine has different winding order.
Definition: EventBinding.h:32
Set the text align and other text displaying formats.
Definition: qtextoption.h:33