Skip to content

Commit 5be0523

Browse files
committed
first public commit
1 parent 9067e54 commit 5be0523

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed

Diff for: .gitignore

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Visual Studio 2015 user specific files
2+
.vs/
3+
4+
# Visual Studio 2015 database file
5+
*.VC.db
6+
7+
# Compiled Object files
8+
*.slo
9+
*.lo
10+
*.o
11+
*.obj
12+
13+
# Precompiled Headers
14+
*.gch
15+
*.pch
16+
17+
# Compiled Dynamic libraries
18+
*.so
19+
*.dylib
20+
*.dll
21+
22+
# Fortran module files
23+
*.mod
24+
25+
# Compiled Static libraries
26+
*.lai
27+
*.la
28+
*.a
29+
*.lib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.ipa
36+
37+
# These project files can be generated by the engine
38+
*.xcodeproj
39+
*.xcworkspace
40+
*.sln
41+
*.suo
42+
*.opensdf
43+
*.sdf
44+
*.VC.db
45+
*.VC.opendb
46+
47+
# Precompiled Assets
48+
SourceArt/**/*.png
49+
SourceArt/**/*.tga
50+
51+
# Binary Files
52+
Binaries/*
53+
Plugins/*/Binaries/*
54+
55+
# Builds
56+
Build/*
57+
58+
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
59+
!Build/*/
60+
Build/*/**
61+
!Build/*/PakBlacklist*.txt
62+
63+
# Don't ignore icon files in Build
64+
!Build/**/*.ico
65+
66+
# Built data for maps
67+
*_BuiltData.uasset
68+
69+
# Configuration files generated by the Editor
70+
Saved/*
71+
72+
# Compiled source files for the engine to use
73+
Intermediate/*
74+
Plugins/*/Intermediate/*
75+
76+
# Cache files for the editor to use
77+
DerivedDataCache/*

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Roberto De Ioris
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.

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# LuaMachine
2+
Unreal Engine 4 Plugin for Lua APIs implementation

0 commit comments

Comments
 (0)