aboutsummaryrefslogtreecommitdiff
path: root/gui/fatom.c
blob: e71dd2755454e9fec69a75f81b8c1215d0053426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <m_pd.h>
#include "g_canvas.h"
#include <ggee.h>

#ifdef NT
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif

#include "fatom.h"


static t_class *fatom_class;




void fatom_setup() {
  post("fatom setup");
    fatom_class = class_new(gensym("fatom"), (t_newmethod)fatom_new, 0,
				sizeof(t_fatom),0,A_DEFSYM,0);

  fatom_setup_common(fatom_class);
}