mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-16 18:24:16 +01:00
25 lines
626 B
ObjectPascal
25 lines
626 B
ObjectPascal
{$mode delphi}
|
|
{$modeswitch objectivec1}
|
|
{$modeswitch cvar}
|
|
{$packrecords c}
|
|
|
|
{$IFNDEF FPC_DOTTEDUNITS}
|
|
unit DefinedClassesGameController;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
interface
|
|
|
|
type
|
|
GCController = objcclass external;
|
|
GCControllerAxisInput = objcclass external;
|
|
GCControllerButtonInput = objcclass external;
|
|
GCControllerDirectionPad = objcclass external;
|
|
GCControllerElement = objcclass external;
|
|
GCExtendedGamepad = objcclass external;
|
|
GCExtendedGamepadSnapshot = objcclass external;
|
|
GCGamepad = objcclass external;
|
|
GCGamepadSnapshot = objcclass external;
|
|
GCMotion = objcclass external;
|
|
|
|
implementation
|
|
end.
|