X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=point.h;fp=point.h;h=5b13e2696067bd9fa00b1f37e02609639f597b75;hb=8b203a503da03228816ccee374f766ccdb1472f5;hp=0000000000000000000000000000000000000000;hpb=11835d3f37e54533659d195f48bf06feb609cbbe;p=cascardo%2Fmovie.git diff --git a/point.h b/point.h new file mode 100644 index 0000000..5b13e26 --- /dev/null +++ b/point.h @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2008 Thadeu Lima de Souza Cascardo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + + +#ifndef POINTS_H +#define POINTS_H + +typedef struct +{ + int x, y; + char *name; +} Point; + +#endif