mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
13 lines
312 B
Python
13 lines
312 B
Python
from .event import Event
|
|
|
|
|
|
class FrontlineAttackEvent(Event):
|
|
"""
|
|
An event centered on a FrontLine Conflict.
|
|
Currently the same as its parent, but here for legacy compatibility as well as to allow for
|
|
future unique Event handling
|
|
"""
|
|
|
|
def __str__(self):
|
|
return "Frontline attack"
|