| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #pragma once
- #include <Atomic/Core/Object.h>
- using namespace Atomic;
- namespace ToolCore
- {
- // requires EULA agreement
- EVENT(E_LICENSE_EULAREQUIRED, LicenseEulaRequired)
- {
- }
- // activation required
- EVENT(E_LICENSE_ACTIVATIONREQUIRED, LicenseActivationRequired)
- {
- }
- // license verification required
- EVENT(E_LICENSE_VERIFICATIONREQUIRED, LicenseVerificationRequired)
- {
- }
- // license success
- EVENT(E_LICENSE_SUCCESS, LicenseSuccess)
- {
- }
- EVENT(E_LICENSE_ACTIVATIONSUCCESS, LicenseActivationSuccess)
- {
- }
- EVENT(E_LICENSE_ACTIVATIONERROR, LicenseActivationError)
- {
- PARAM(P_MESSAGE, Message); // String
- }
- EVENT(E_LICENSE_DEACTIVATIONSUCCESS, LicenseDeactivationSuccess)
- {
- }
- EVENT(E_LICENSE_DEACTIVATIONERROR, LicenseDeactivationError)
- {
- PARAM(P_MESSAGE, Message); // String
- }
- // license error
- EVENT(E_LICENSE_ERROR, LicenseError)
- {
- }
- }
|