Java Code Examples for skadistats.clarity.wire.common.proto.DotaUserMessages#DOTA_COMBATLOG_TYPES

The following examples show how to use skadistats.clarity.wire.common.proto.DotaUserMessages#DOTA_COMBATLOG_TYPES . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: S1CombatLogEntry.java    From clarity with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public DotaUserMessages.DOTA_COMBATLOG_TYPES getType() {
    return DotaUserMessages.DOTA_COMBATLOG_TYPES.valueOf((int) e.getProperty(indices.typeIdx));
}
 
Example 2
Source File: S2CombatLogEntry.java    From clarity with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public DotaUserMessages.DOTA_COMBATLOG_TYPES getType() {
    return e.getType();
}
 
Example 3
Source File: CombatLogEntry.java    From clarity with BSD 3-Clause "New" or "Revised" License votes vote down vote up
DotaUserMessages.DOTA_COMBATLOG_TYPES getType();