Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 26, 2008, 5:38:55 PM (15 years ago)
Author:
dafrick
Message:

Implemented some rudimentary Notification system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem3/src/orxonox/objects/quest/CompleteQuest.cc

    r2261 r2280  
    4242#include "QuestManager.h"
    4343#include "Quest.h"
     44#include "orxonox/overlays/notifications/Notification.h"
    4445
    4546namespace orxonox {
     
    110111
    111112        COUT(3) << "Quest {" << quest->getId() << "} successfully completed by player: " << player << " ." << std::endl;
     113        Notification* notification = new Notification("Crazy Message...", "Title", 30);
     114        notification->send();
    112115        return true;
    113116    }
Note: See TracChangeset for help on using the changeset viewer.