| 123456789101112131415161718192021 |
- /*
- * PolyUIEvent.cpp
- * Poly
- *
- * Created by Ivan Safrin on 7/30/08.
- * Copyright 2008 __MyCompanyName__. All rights reserved.
- *
- */
- #include "PolyUIEvent.h"
- using namespace Polycode;
- UIEvent::UIEvent() {
- eventType = "UIEvent";
- }
- UIEvent::~UIEvent() {
- }
|