14 lines
271 B
C#
14 lines
271 B
C#
using cfg;
|
|
|
|
namespace Activity.Event
|
|
{
|
|
public class GMActivityOpenedEvent
|
|
{
|
|
public readonly FishingEvent FishingEvent;
|
|
|
|
public GMActivityOpenedEvent(FishingEvent fishingEvent)
|
|
{
|
|
FishingEvent = fishingEvent;
|
|
}
|
|
}
|
|
} |