You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
325 B

package com.keylesspalace.tusky.interfaces
import android.view.View
import com.keylesspalace.tusky.entity.Chat
interface ChatActionListener: LinkListener {
fun onLoadMore(position: Int) {}
fun onMore(chatId: String, v: View) {}
fun openChat(position: Int) {}
fun onViewMedia(position: Int, view: View?) {}
}