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

import android.content.Context
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)
}