Advertisement
timeshifter

car

May 12th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. class Car {
  2.     public Engine Engine;
  3.     public int Doors;
  4.     public decimal Height;
  5.     public decimal Width;
  6.     public decimal Length;
  7.     public decimal Weight;
  8. }
  9.  
  10. public struct Engine {
  11.     public int Cylinders;
  12.     public decimal Displacement;
  13.     public decimal Horsepower;
  14.     public decimal Torque;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement