Skip to content

Commit

Permalink
started implementing Va3cScene and added sample JOSN model
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Tammik committed May 17, 2014
1 parent 6bc01a0 commit 5bfd121
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 1 deletion.
1 change: 0 additions & 1 deletion RvtVa3c/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
//using System.Windows.Forms;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
Expand Down
2 changes: 2 additions & 0 deletions RvtVa3c/RvtVa3c.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.XML" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
Expand All @@ -63,6 +64,7 @@
<Compile Include="Va3cExportContext.cs" />
<Compile Include="Va3cFace.cs" />
<Compile Include="Va3cMaterial.cs" />
<Compile Include="Va3cScene.cs" />
</ItemGroup>
<ItemGroup>
<None Include="RvtVa3c.addin" />
Expand Down
12 changes: 12 additions & 0 deletions RvtVa3c/Va3cScene.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Runtime.Serialization;

namespace RvtVa3c
{
[DataContract]
class Va3cScene
{
[DataMember]
string Metadata { get; set; }
}
}
Loading

0 comments on commit 5bfd121

Please sign in to comment.