Traits.cpp 148 B

1234567891011
  1. #include "../../Include/RmlUi/Core/Traits.h"
  2. namespace Rml {
  3. int FamilyBase::GetNewId()
  4. {
  5. static int id = 0;
  6. return id++;
  7. }
  8. } // namespace Rml