~ubuntu-branches/ubuntu/jaunty/bygfoot/jaunty

« back to all changes in this revision

Viewing changes to src/load_save.h

  • Committer: Bazaar Package Importer
  • Author(s): Isaac Clerencia
  • Date: 2005-07-05 23:53:40 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050705235340-akpef5bdm7gsm9m4
Tags: 1.9.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LOAD_SAVE_H
 
2
#define LOAD_SAVE_H
 
3
 
 
4
#include "bygfoot.h"
 
5
 
 
6
void
 
7
load_save_save_game(const gchar* filename);
 
8
 
 
9
gboolean
 
10
load_save_load_game(const gchar* filename);
 
11
 
 
12
void
 
13
load_save_last_save_set(const gchar *filename);
 
14
 
 
15
gchar*
 
16
load_save_last_save_get(void);
 
17
 
 
18
void
 
19
load_save_autosave(void);
 
20
 
 
21
#endif