source: 2011/26/JuhoK/SFN_New/SFN/SFN/SFN/Auto.cs @ 2409

Revision 2409, 663 bytes checked in by jumakall, 12 years ago (diff)
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using Jypeli;
6
7namespace 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.