You've already forked lazarus-ccr
Adds basic animations support to tappytux
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1961 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -17,6 +17,8 @@ type
|
||||
constructor Create; override;
|
||||
procedure TranslateTextsToEnglish; override;
|
||||
procedure TranslateTextsToPortuguese; override;
|
||||
procedure StartNewGame(); override;
|
||||
procedure EndGame(); override;
|
||||
end;
|
||||
|
||||
implementation
|
||||
@ -38,6 +40,16 @@ 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.
|
||||
|
Reference in New Issue
Block a user