Skip to content

Commit 16f38a6

Browse files
authored
Initial commit
0 parents  commit 16f38a6

File tree

3 files changed

+96
-0
lines changed

3 files changed

+96
-0
lines changed

.gitignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
4+
#
5+
.utmp/
6+
/[Ll]ibrary/
7+
/[Tt]emp/
8+
/[Oo]bj/
9+
/[Bb]uild/
10+
/[Bb]uilds/
11+
/[Ll]ogs/
12+
/[Uu]ser[Ss]ettings/
13+
14+
# MemoryCaptures can get excessive in size.
15+
# They also could contain extremely sensitive data
16+
/[Mm]emoryCaptures/
17+
18+
# Recordings can get excessive in size
19+
/[Rr]ecordings/
20+
21+
# Uncomment this line if you wish to ignore the asset store tools plugin
22+
# /[Aa]ssets/AssetStoreTools*
23+
24+
# Autogenerated Jetbrains Rider plugin
25+
/[Aa]ssets/Plugins/Editor/JetBrains*
26+
27+
# Visual Studio cache directory
28+
.vs/
29+
30+
# Gradle cache directory
31+
.gradle/
32+
33+
# Autogenerated VS/MD/Consulo solution and project files
34+
ExportedObj/
35+
.consulo/
36+
*.csproj
37+
*.unityproj
38+
*.sln
39+
*.suo
40+
*.tmp
41+
*.user
42+
*.userprefs
43+
*.pidb
44+
*.booproj
45+
*.svd
46+
*.pdb
47+
*.mdb
48+
*.opendb
49+
*.VC.db
50+
51+
# Unity3D generated meta files
52+
*.pidb.meta
53+
*.pdb.meta
54+
*.mdb.meta
55+
56+
# Unity3D generated file on crash reports
57+
sysinfo.txt
58+
59+
# Builds
60+
*.apk
61+
*.aab
62+
*.unitypackage
63+
*.unitypackage.meta
64+
*.app
65+
66+
# Crashlytics generated file
67+
crashlytics-build.properties
68+
69+
# Packed Addressables
70+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
71+
72+
# Temporary auto-generated Android Assets
73+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
74+
/[Aa]ssets/[Ss]treamingAssets/aa/*

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Runqiu Wang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# SketchGenie

0 commit comments

Comments
 (0)