Skip to content

Commit dbf6cf8

Browse files
author
ChrisDill
committed
Initial commit.
0 parents  commit dbf6cf8

File tree

423 files changed

+113561
-0
lines changed

Some content is hidden

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

423 files changed

+113561
-0
lines changed

.gitignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Ignore generated files
2+
# ...
3+
.vscode/
4+
5+
# Ignore VIM's backup generated files
6+
*.swp
7+
*.swo
8+
# Ignore thumbnails created by windows
9+
Thumbs.db
10+
11+
# Ignore files build by Visual Studio
12+
# *.obj --> Can be confused with 3d model!
13+
*.pdb
14+
*.aps
15+
*.user
16+
# *.vcproj
17+
# *.vcxproj*
18+
# *.sln
19+
*.vspscc
20+
*_i.c
21+
*.i
22+
*.icf
23+
*_p.c
24+
*.ncb
25+
*.suo
26+
*.tlb
27+
*.tlh
28+
*.bak
29+
*.cache
30+
*.ilk
31+
*.log
32+
33+
[Bb]in
34+
[Dd]ebug/
35+
[Dd]ebug.win32/
36+
[Dd]ebug.DLL/
37+
*.sbr
38+
*.sdf
39+
obj/
40+
[R]elease/
41+
[Rr]elease.win32/
42+
_ReSharper*/
43+
[Tt]est[Rr]esult*
44+
ipch/
45+
*.opensdf
46+
*.db
47+
*.opendb
48+
packages/
49+
50+
# Ignore compiled binaries
51+
*.o
52+
*.exe
53+
*.a
54+
*.bc
55+
*.so
56+
!raylib.rc.o
57+
58+
# Ignore all examples files
59+
examples/*
60+
# Unignore all examples dirs
61+
!examples/*/
62+
# Unignore all examples files with extension
63+
!examples/*.c
64+
!examples/*.lua
65+
!examples/*.png
66+
# Unignore examples Makefile
67+
!examples/Makefile
68+
69+
# Ignore files build by xcode
70+
*.mode*v*
71+
*.pbxuser
72+
*.xcbkptlist
73+
*.xcscheme
74+
*.xcworkspacedata
75+
*.xcuserstate
76+
*.xccheckout
77+
xcschememanagement.plist
78+
.DS_Store
79+
._.*
80+
xcuserdata/
81+
DerivedData/
82+
83+
# Jetbrains project
84+
.idea/
85+
cmake-build-debug/
86+
87+
# Ignore GNU global tags
88+
GPATH
89+
GRTAGS
90+
GTAGS
91+
.vs

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "Raylib-cs"]
2+
path = Raylib-cs
3+
url = https://github.com/ChrisDill/Raylib-cs/
4+
branch = dev

Examples/Examples.csproj

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<TargetFrameworks>net47;netcoreapp3.1</TargetFrameworks>
5+
<ApplicationIcon>../Raylib-cs/Logo/raylib-cs.ico</ApplicationIcon>
6+
<Platforms>AnyCPU;x64;x86</Platforms>
7+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8+
<StartupObject>Examples.Program</StartupObject>
9+
</PropertyGroup>
10+
11+
<Import Project="../netfx.props" />
12+
13+
<ItemGroup>
14+
<Compile Remove="models/*.cs" />
15+
<Compile Remove="others/*.cs" />
16+
<Compile Remove="physics/*.cs" />
17+
<Compile Remove="shaders/*.cs" />
18+
<Compile Remove="core/core_loading_thread.cs" />
19+
<Compile Remove="text/text_unicode.cs" />
20+
<Compile Remove="text/text_font_sdf.cs" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<None Include="../app.config" />
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<ProjectReference Include="../Raylib-cs/Raylib-cs/Raylib-cs.csproj" />
29+
</ItemGroup>
30+
</Project>

0 commit comments

Comments
 (0)