blob: 98309b11226b2a048d84223b53590cddfcbb9ab5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* */ package StandardIO;
/* */
/* */ import java.io.IOException;
/* */
/* */ public class SaveFileWriter extends MFileWriter
/* */ {
/* */ public SaveFileWriter(String file)
/* */ throws IOException
/* */ {
/* 14 */ super(file);
/* 15 */ println("Modulus 2.0.0 Save File");
/* 16 */ super.writeDateAndTime();
/* 17 */ println("------------------------------");
/* */ }
/* */ }
/* Location: Modulus.jar
* Qualified Name: StandardIO.SaveFileWriter
* JD-Core Version: 0.6.2
*/
|