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.
|
//
|
|
// FLTCocosOptionsSink.swift
|
|
// flutter_unity_widget
|
|
//
|
|
// Created by Rex Raphael on 30/01/2021.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
// Defines map UI options writable from Flutter.
|
|
protocol FLTCocosOptionsSink: AnyObject {
|
|
func setDisabledUnload(enabled: Bool)
|
|
}
|
|
|