1 //
2 // state.cpp: VJ machine state save/load support
3 //
4 // by James Hammons
5 // (C) 2010 Underground Software
6 //
7 // JLH = James Hammons <jlhamm@acm.org>
8 //
9 // Who  When        What
10 // ---  ----------  -------------------------------------------------------------
11 // JLH  01/16/2010  Created this log ;-)
12 //
13 
14 #include "state.h"
15 
SaveState(void)16 bool SaveState(void)
17 {
18 	return false;
19 }
20 
LoadState(void)21 bool LoadState(void)
22 {
23 	return false;
24 }
25 
26