Skip to content

Commit 8ccdc9d

Browse files
Initial commit
0 parents  commit 8ccdc9d

200 files changed

Lines changed: 34705 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 404 additions & 0 deletions
Large diffs are not rendered by default.

.vscode/launch.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/engine/bin/Debug/net7.0/engine.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/engine/bin/Debug/net7.0/",
16+
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+
"console": "internalConsole",
18+
"stopAtEntry": false,
19+
"justMyCode": false,
20+
"logging": {
21+
"moduleLoad": false
22+
},
23+
"requireExactSource": false
24+
},
25+
{
26+
"name": ".NET Core Attach",
27+
"type": "coreclr",
28+
"request": "attach"
29+
}
30+
]
31+
}

.vscode/settings.json

Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
1+
{
2+
"files.exclude": {
3+
"**/imgui.ini": true,
4+
"**/*.rsuser": true,
5+
"**/*.suo": true,
6+
"**/*.user": true,
7+
"**/*.userosscache": true,
8+
"**/*.sln.docstates": true,
9+
"**/*.userprefs": true,
10+
"**/mono_crash.*": true,
11+
"**/[Dd]ebug/": true,
12+
"**/[Dd]ebugPublic/": true,
13+
"**/[Rr]elease/": true,
14+
"**/[Rr]eleases/": true,
15+
"**/x64/": true,
16+
"**/x86/": true,
17+
"**/[Ww][Ii][Nn]32/": true,
18+
"**/[Aa][Rr][Mm]/": true,
19+
"**/[Aa][Rr][Mm]64/": true,
20+
"**/bld/": true,
21+
"**/[Bb]in/": true,
22+
"**/[Oo]bj/": true,
23+
"**/[Ll]og/": true,
24+
"**/[Ll]ogs/": true,
25+
"**/.vs/": true,
26+
"**/Generated\\ Files/": true,
27+
"**/[Tt]est[Rr]esult*/": true,
28+
"**/[Bb]uild[Ll]og.*": true,
29+
"**/*.VisualState.xml": true,
30+
"**/TestResult.xml": true,
31+
"**/nunit-*.xml": true,
32+
"**/[Dd]ebugPS/": true,
33+
"**/[Rr]eleasePS/": true,
34+
"**/dlldata.c": true,
35+
"**/BenchmarkDotNet.Artifacts/": true,
36+
"**/project.lock.json": true,
37+
"**/project.fragment.lock.json": true,
38+
"**/artifacts/": true,
39+
"**/ScaffoldingReadMe.txt": true,
40+
"**/StyleCopReport.xml": true,
41+
"**/*_i.c": true,
42+
"**/*_p.c": true,
43+
"**/*_h.h": true,
44+
"**/*.ilk": true,
45+
"**/*.meta": true,
46+
"**/*.obj": true,
47+
"**/*.iobj": true,
48+
"**/*.pch": true,
49+
"**/*.pgc": true,
50+
"**/*.pgd": true,
51+
"**/*.rsp": true,
52+
"**/*.sbr": true,
53+
"**/*.tlb": true,
54+
"**/*.tli": true,
55+
"**/*.tlh": true,
56+
"**/*.tmp": true,
57+
"**/*.tmp_proj": true,
58+
"**/*_wpftmp.csproj": true,
59+
"**/*.log": true,
60+
"**/*.tlog": true,
61+
"**/*.vspscc": true,
62+
"**/*.vssscc": true,
63+
"**/.builds": true,
64+
"**/*.pidb": true,
65+
"**/*.svclog": true,
66+
"**/*.scc": true,
67+
"**/_Chutzpah*": true,
68+
"**/ipch/": true,
69+
"**/*.aps": true,
70+
"**/*.ncb": true,
71+
"**/*.opendb": true,
72+
"**/*.opensdf": true,
73+
"**/*.sdf": true,
74+
"**/*.cachefile": true,
75+
"**/*.VC.db": true,
76+
"**/*.VC.VC.opendb": true,
77+
"**/*.psess": true,
78+
"**/*.vsp": true,
79+
"**/*.vspx": true,
80+
"**/*.sap": true,
81+
"**/*.e2e": true,
82+
"**/$tf/": true,
83+
"**/*.gpState": true,
84+
"**/_ReSharper*/": true,
85+
"**/*.[Rr]e[Ss]harper": true,
86+
"**/*.DotSettings.user": true,
87+
"**/_TeamCity*": true,
88+
"**/*.dotCover": true,
89+
".axoCover/*": true,
90+
".axoCover/settings.json": false,
91+
"**/coverage*.json": true,
92+
"**/coverage*.xml": true,
93+
"**/coverage*.info": true,
94+
"**/*.coverage": true,
95+
"**/*.coveragexml": true,
96+
"**/_NCrunch_*": true,
97+
"**/.*crunch*.local.xml": true,
98+
"**/nCrunchTemp_*": true,
99+
"**/*.mm.*": true,
100+
"**/AutoTest.Net/": true,
101+
"**/.sass-cache/": true,
102+
"**/[Ee]xpress/": true,
103+
"**/DocProject/buildhelp/": true,
104+
"DocProject/Help/*.HxT": true,
105+
"DocProject/Help/*.HxC": true,
106+
"DocProject/Help/*.hhc": true,
107+
"DocProject/Help/*.hhk": true,
108+
"DocProject/Help/*.hhp": true,
109+
"DocProject/Help/Html2": true,
110+
"DocProject/Help/html": true,
111+
"**/publish/": true,
112+
"**/*.[Pp]ublish.xml": true,
113+
"**/*.azurePubxml": true,
114+
"**/*.pubxml": true,
115+
"**/*.publishproj": true,
116+
"**/PublishScripts/": true,
117+
"**/*.nupkg": true,
118+
"**/*.snupkg": true,
119+
"**/[Pp]ackages/*": true,
120+
"**/[Pp]ackages/build/": false,
121+
"**/*.nuget.props": true,
122+
"**/*.nuget.targets": true,
123+
"**/csx/": true,
124+
"**/*.build.csdef": true,
125+
"**/ecf/": true,
126+
"**/rcf/": true,
127+
"**/AppPackages/": true,
128+
"**/BundleArtifacts/": true,
129+
"**/Package.StoreAssociation.xml": true,
130+
"**/_pkginfo.txt": true,
131+
"**/*.appx": true,
132+
"**/*.appxbundle": true,
133+
"**/*.appxupload": true,
134+
"**/*.[Cc]ache": true,
135+
"**/?*.[Cc]ache/": false,
136+
"**/ClientBin/": true,
137+
"**/~$*": true,
138+
"**/*~": true,
139+
"**/*.dbmdl": true,
140+
"**/*.dbproj.schemaview": true,
141+
"**/*.jfm": true,
142+
"**/*.pfx": true,
143+
"**/*.publishsettings": true,
144+
"**/orleans.codegen.cs": true,
145+
"**/Generated_Code/": true,
146+
"**/_UpgradeReport_Files/": true,
147+
"**/Backup*/": true,
148+
"**/UpgradeLog*.XML": true,
149+
"**/UpgradeLog*.htm": true,
150+
"**/ServiceFabricBackup/": true,
151+
"**/*.rptproj.bak": true,
152+
"**/*.mdf": true,
153+
"**/*.ldf": true,
154+
"**/*.ndf": true,
155+
"**/*.rdl.data": true,
156+
"**/*.bim.layout": true,
157+
"**/*.bim_*.settings": true,
158+
"**/*.rptproj.rsuser": true,
159+
"**/*- [Bb]ackup.rdl": true,
160+
"**/*- [Bb]ackup ([0-9]).rdl": true,
161+
"**/*- [Bb]ackup ([0-9][0-9]).rdl": true,
162+
"**/FakesAssemblies/": true,
163+
"**/*.GhostDoc.xml": true,
164+
"**/.ntvs_analysis.dat": true,
165+
"**/node_modules/": true,
166+
"**/*.plg": true,
167+
"**/*.opt": true,
168+
"**/*.vbw": true,
169+
"**/*.vbp": true,
170+
"**/*.dsw": true,
171+
"**/*.dsp": true,
172+
"**/*.HTMLClient/GeneratedArtifacts": true,
173+
"**/*.DesktopClient/GeneratedArtifacts": true,
174+
"**/*.DesktopClient/ModelManifest.xml": true,
175+
"**/*.Server/GeneratedArtifacts": true,
176+
"**/*.Server/ModelManifest.xml": true,
177+
"**/_Pvt_Extensions": true,
178+
".paket/paket.exe": true,
179+
"**/paket-files/": true,
180+
"**/.fake/": true,
181+
".cr/personal": true,
182+
"**/__pycache__/": true,
183+
"**/*.pyc": true,
184+
"**/*.tss": true,
185+
"**/*.jmconfig": true,
186+
"**/*.btp.cs": true,
187+
"**/*.btm.cs": true,
188+
"**/*.odx.cs": true,
189+
"**/*.xsd.cs": true,
190+
"**/OpenCover/": true,
191+
"**/ASALocalRun/": true,
192+
"**/*.binlog": true,
193+
"**/*.nvuser": true,
194+
"**/.mfractor/": true,
195+
"**/.localhistory/": true,
196+
"**/.vshistory/": true,
197+
"**/healthchecksdb": true,
198+
"**/MigrationBackup/": true,
199+
"**/.ionide/": true,
200+
"**/FodyWeavers.xsd": true,
201+
"**/*.code-workspace": true,
202+
"**/.history/": true,
203+
"**/*.cab": true,
204+
"**/*.msi": true,
205+
"**/*.msix": true,
206+
"**/*.msm": true,
207+
"**/*.msp": true,
208+
"**/*.sln.iml": true
209+
}
210+
}

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/engine/engine.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/engine/engine.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"--project",
36+
"${workspaceFolder}/engine/engine.csproj"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

Equilibrium.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "equilibrium", "equilibrium\equilibrium.csproj", "{DA3A9E27-7199-4D06-89EB-53D20892EB6B}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "engine", "engine\engine.csproj", "{6E216193-7EA4-451B-B08A-1782C676DBD9}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "shared", "shared\shared.csproj", "{69DDD0F8-D83C-4C6F-BC63-1397793429A8}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{DA3A9E27-7199-4D06-89EB-53D20892EB6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{DA3A9E27-7199-4D06-89EB-53D20892EB6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{DA3A9E27-7199-4D06-89EB-53D20892EB6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{DA3A9E27-7199-4D06-89EB-53D20892EB6B}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{6E216193-7EA4-451B-B08A-1782C676DBD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{6E216193-7EA4-451B-B08A-1782C676DBD9}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{6E216193-7EA4-451B-B08A-1782C676DBD9}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{6E216193-7EA4-451B-B08A-1782C676DBD9}.Release|Any CPU.Build.0 = Release|Any CPU
29+
{69DDD0F8-D83C-4C6F-BC63-1397793429A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{69DDD0F8-D83C-4C6F-BC63-1397793429A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{69DDD0F8-D83C-4C6F-BC63-1397793429A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{69DDD0F8-D83C-4C6F-BC63-1397793429A8}.Release|Any CPU.Build.0 = Release|Any CPU
33+
EndGlobalSection
34+
EndGlobal

content/fonts/DroidSans.ttf

186 KB
Binary file not shown.

content/fonts/Roboto-Medium.ttf

159 KB
Binary file not shown.
1.33 MB
Binary file not shown.
1.33 MB
Binary file not shown.
1.33 MB
Binary file not shown.

0 commit comments

Comments
 (0)