8 lines
236 B
Haxe
8 lines
236 B
Haxe
interface IClientInterface
|
|
{
|
|
// Same as IHostInterface, but not implemented in host
|
|
public function whoStartedYou() : String;
|
|
public function whoOverridesYou() : String;
|
|
public function uniqueClientFunc() : String;
|
|
}
|