Line | |
---|
1 | using System; |
---|
2 | using System.Collections.Generic; |
---|
3 | using System.Linq; |
---|
4 | using System.Text; |
---|
5 | using Jypeli; |
---|
6 | |
---|
7 | namespace SFN |
---|
8 | { |
---|
9 | [Save] public class Auto |
---|
10 | { |
---|
11 | [Save] public string korinnimi = ""; |
---|
12 | [Save] public int kori = 0; |
---|
13 | [Save] public int moottori = 0; |
---|
14 | [Save] public int renkaat = 0; |
---|
15 | [Save] public int vari = 0; |
---|
16 | |
---|
17 | public Auto(string korinnimi, int vari, int kori, int moottori, int renkaat) |
---|
18 | { |
---|
19 | this.korinnimi = korinnimi; |
---|
20 | this.kori = kori; |
---|
21 | this.moottori = moottori; |
---|
22 | this.renkaat = renkaat; |
---|
23 | this.vari = vari; |
---|
24 | } |
---|
25 | } |
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.