Skip to content

Commit 695a087

Browse files
committedJun 13, 2020
Added 3d rendering engine - WIP spike
1 parent eb0b07d commit 695a087

21 files changed

+11018
-15
lines changed
 

‎Common/Point.cs

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace Common
1+
namespace Common
82
{
93
public class Point
104
{

‎MapEditor.sln

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapEngine", "MapEngine\MapE
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Common\Common.csproj", "{DAB6FD98-4873-4712-8294-A847C0C79EAD}"
1111
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SoftEngine", "SoftEngine\SoftEngine.csproj", "{93E04CC4-0F26-4F7D-BD33-58DAF405BD5D}"
13+
EndProject
1214
Global
1315
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1416
Debug|Any CPU = Debug|Any CPU
@@ -27,6 +29,10 @@ Global
2729
{DAB6FD98-4873-4712-8294-A847C0C79EAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
2830
{DAB6FD98-4873-4712-8294-A847C0C79EAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
2931
{DAB6FD98-4873-4712-8294-A847C0C79EAD}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{93E04CC4-0F26-4F7D-BD33-58DAF405BD5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{93E04CC4-0F26-4F7D-BD33-58DAF405BD5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{93E04CC4-0F26-4F7D-BD33-58DAF405BD5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{93E04CC4-0F26-4F7D-BD33-58DAF405BD5D}.Release|Any CPU.Build.0 = Release|Any CPU
3036
EndGlobalSection
3137
GlobalSection(SolutionProperties) = preSolution
3238
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)
Please sign in to comment.