Message PublishMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to publish events in a SubSpace

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

YMMOGMessage

Base message for all messages used by YMMOG

Fields:

Name Type Description
playerId int
subSpaceId int

the SubSpace the event is sent to

publishedEvent Event

the event that has to be published

Source code:

message PublishMessage extends YMMOGMessage {
    fields:
        int playerId;
        int subSpaceId;    // the SubSpace the event is sent to
        Event publishedEvent;    // the event that has to be published
 }