libretro.drivers.types

Shared protocol types used by multiple driver families.

Classes

Pollable

A type that can be polled for an update once per frame.

class Pollable[source]

Bases: Protocol

A type that can be polled for an update once per frame.

abstractmethod poll()[source]

Poll the driver for an update.

Return type:

None

__init__(*args, **kwargs)
classmethod __new__(*args, **kwargs)