Platform.cpp 163 B

123456789101112131415161718
  1. #include "Platform.h"
  2. namespace ToolCore
  3. {
  4. Platform::Platform(Context* context) : Object(context),
  5. validLicense_(false)
  6. {
  7. }
  8. Platform::~Platform()
  9. {
  10. }
  11. }