Beginning to implement switchin() and switchout() Magic tool plugin API.

This commit is contained in:
William Kendrick 2008-07-08 00:21:31 +00:00
parent b14e850f12
commit b4ed444f0f
40 changed files with 389 additions and 420 deletions

View file

@ -4,7 +4,7 @@
Metal Paint Magic Tool Plugin
Tux Paint - A simple drawing program for children.
Copyright (c) 2002-2007 by Bill Kendrick and others; see AUTHORS.txt
Copyright (c) 2002-2008 by Bill Kendrick and others; see AUTHORS.txt
bill@newbreedsoftware.com
http://www.tuxpaint.org/
@ -23,7 +23,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt)
Last updated: August 7, 2007
Last updated: July 7, 2008
$Id$
*/
@ -173,3 +173,11 @@ int metalpaint_requires_colors(magic_api * api, int which)
return 1;
}
void metalpaint_switchin(magic_api * api, int which, SDL_Surface * canvas)
{
}
void metalpaint_switchout(magic_api * api, int which, SDL_Surface * canvas)
{
}