cocos.actions.quadmoveby_actions.Flip:
Flip moves the upper-left corner to the bottom-left corner and vice-versa, and
moves the upper-right corner to the bottom-left corner and vice-versa, flipping the
window upside-down, and right-left.
cocos.actions.tiledgrid_actions.JumpTiles3D:
Odd tiles will perform a jump in the z-axis using the sine function,
while the even tiles will perform a jump using sine+pi function
cocos.tiles.Tile:
Tiles hold an image and some optional properties.
ctypes.Structure
ctypes.Structure
ctypes.Structure
ctypes.Structure
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.