aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/events/WebLaunchEvent.kt
blob: 13a8187a65cb26068ea30cf1d26f83c33860a5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.pitchedapps.frost.events

import android.content.Context
import com.pitchedapps.frost.WebOverlayActivity
import com.pitchedapps.frost.utils.launchWebOverlay

/**
 * Created by Allan Wang on 2017-06-01.
 */
class WebLaunchEvent(val url: String) {
    fun execute(context: Context) = context.launchWebOverlay(url)
}