mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
Create intial empty core structure classes.
This commit is contained in:
parent
e2f48a01a3
commit
bd2932832b
7 changed files with 66 additions and 0 deletions
|
@ -34,6 +34,12 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="RippleSpace\Plane.cs" />
|
||||||
|
<Compile Include="RippleSpace\Chunk.cs" />
|
||||||
|
<Compile Include="RippleSpace\LocationReference.cs" />
|
||||||
|
<Compile Include="RippleSpace\ChunkReference.cs" />
|
||||||
|
<Compile Include="RippleSpace\DrawnLine.cs" />
|
||||||
|
<Compile Include="RippleSpace\Reference.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="RippleSpace\" />
|
<Folder Include="RippleSpace\" />
|
||||||
|
|
10
Nibriboard/RippleSpace/Chunk.cs
Normal file
10
Nibriboard/RippleSpace/Chunk.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public class Chunk
|
||||||
|
{
|
||||||
|
public Chunk()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
Nibriboard/RippleSpace/ChunkReference.cs
Normal file
10
Nibriboard/RippleSpace/ChunkReference.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public class ChunkReference : Reference
|
||||||
|
{
|
||||||
|
public ChunkReference()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
Nibriboard/RippleSpace/DrawnLine.cs
Normal file
10
Nibriboard/RippleSpace/DrawnLine.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public class DrawnLine
|
||||||
|
{
|
||||||
|
public DrawnLine()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
Nibriboard/RippleSpace/LocationReference.cs
Normal file
10
Nibriboard/RippleSpace/LocationReference.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public class LocationReference : Reference
|
||||||
|
{
|
||||||
|
public LocationReference()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
Nibriboard/RippleSpace/Plane.cs
Normal file
10
Nibriboard/RippleSpace/Plane.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public class Plane
|
||||||
|
{
|
||||||
|
public Plane()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
Nibriboard/RippleSpace/Reference.cs
Normal file
10
Nibriboard/RippleSpace/Reference.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
using System.Security.Policy;
|
||||||
|
namespace Nibriboard.RippleSpace
|
||||||
|
{
|
||||||
|
public abstract class Reference
|
||||||
|
{
|
||||||
|
public int X { get; set; }
|
||||||
|
public int Y { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue