Skip to content

Commit c1cf801

Browse files
committed
fix a null using issue and add ignore regular file
1 parent fc3ad5c commit c1cf801

2 files changed

Lines changed: 43 additions & 0 deletions

File tree

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/[Ll]ibrary/
2+
/[Tt]emp/
3+
/[Oo]bj/
4+
/[Bb]uild/
5+
/[Bb]uilds/
6+
/Assets/AssetStoreTools*
7+
8+
# Visual Studio 2015 cache directory
9+
/.vs/
10+
11+
# Autogenerated VS/MD/Consulo solution and project files
12+
ExportedObj/
13+
.consulo/
14+
*.csproj
15+
*.unityproj
16+
*.sln
17+
*.suo
18+
*.tmp
19+
*.user
20+
*.userprefs
21+
*.pidb
22+
*.booproj
23+
*.svd
24+
*.pdb
25+
26+
# Unity3D generated meta files
27+
*.pidb.meta
28+
29+
# Unity3D Generated File On Crash Reports
30+
sysinfo.txt
31+
32+
# Builds
33+
*.apk
34+
*.unitypackage
35+
Assets/_Ignore
36+
_Ignore.meta
37+
.idea
38+
Logs
39+
Assets/Plugins/Editor/JetBrains
40+
Assets/Plugins/Editor/JetBrains.meta
41+
Recordings

Assets/_Complete-Game/Scripts/Core/LuaInterface/LuaScriptManager.cs

100755100644
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
using System.Collections.Generic;
2+
using System.IO;
3+
using System.Text;
24
using UnityEngine;
35
using UnityEngine.AddressableAssets;
46
using UnityEngine.ResourceManagement;

0 commit comments

Comments
 (0)