lazarus-ccr/applications/tappytux/mod_tappymath.pas
sekelsenmat 5379901827 Adds basic animations support to tappytux
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1961 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-09-15 14:34:06 +00:00

57 lines
877 B
ObjectPascal

unit mod_tappymath;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
tappymodules;
type
{ TTappyMath }
TTappyMath = class(TTappyModule)
public
constructor Create; override;
procedure TranslateTextsToEnglish; override;
procedure TranslateTextsToPortuguese; override;
procedure StartNewGame(); override;
procedure EndGame(); override;
end;
implementation
{ TTappyWords }
constructor TTappyMath.Create;
begin
inherited Create;
end;
procedure TTappyMath.TranslateTextsToEnglish;
begin
ShortDescription := 'TappyMath - A game to learn arithmetics';
end;
procedure TTappyMath.TranslateTextsToPortuguese;
begin
ShortDescription := 'TappyMath - Um jogo para aprender aritmética';
end;
procedure TTappyMath.StartNewGame;
begin
end;
procedure TTappyMath.EndGame;
begin
end;
initialization
AddModule(TTappyMath.Create);
end.