]> Dogcows Code - chaz/carfire/blob - CarFire/CarFire/MapProcessorLib/MapSourceCode.cs
created a new project MapProcessorLib to for importing map files
[chaz/carfire] / CarFire / CarFire / MapProcessorLib / MapSourceCode.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Microsoft.Xna.Framework.Content.Pipeline;
6
7 namespace MapProcessorLib
8 {
9 /// <summary>
10 /// Container for the map file before it is rewritten as an XNB file.
11 /// </summary>
12 public class MapSourceCode
13 {
14 string[] mLines;
15 public string[] Lines { get { return mLines; } }
16
17 public MapSourceCode(string[] lines)
18 {
19 mLines = lines;
20 }
21 }
22 }
This page took 0.029023 seconds and 4 git commands to generate.