Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/boards/py-mod-anim.h
blob: f6c8fc2b0fb411de7c9d2323fa04b5fc668a29c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _PY_MOD_ANIM_H_
#define _PY_MOD_ANIM_H_

#include <Python.h>
#include "gcompris/anim.h"

void python_gcompris_anim_module_init();

typedef struct {
  PyObject_HEAD
  GcomprisAnimation *a;
} py_GcomprisAnimation;

typedef struct {
  PyObject_HEAD
  PyObject *anim;
  GcomprisAnimCanvasItem *item;
} py_GcomprisAnimCanvas;

#endif