Changeset 723
- Timestamp:
- Sep 26, 2013, 2:44:27 PM (10 years ago)
- Location:
- abuse/branches/lol
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/branches/lol/.gitignore
r686 r723 1 # Autotools cruft 1 2 Makefile.in 2 3 Makefile … … 15 16 .deps 16 17 .dirstamp 18 # Visual Studio cruft 19 *.vcxproj.user 20 # Our binaries 17 21 src/abuse 18 22 src/abuse-tool -
abuse/branches/lol/bootstrap
- Property svn:executable deleted
-
abuse/branches/lol/src/ant.cpp
r715 r723 18 18 19 19 #include "ant.h" 20 #include "lisp .h"21 #include "lisp _gc.h"20 #include "lisp/lisp.h" 21 #include "lisp/lisp_gc.h" 22 22 #include "compiled.h" 23 23 #include "objects.h" -
abuse/branches/lol/src/clisp.cpp
r712 r723 14 14 15 15 #include <string.h> 16 #include <unistd.h>17 16 18 17 #include "common.h" … … 21 20 22 21 #include "ant.h" 23 #include "lisp .h"22 #include "lisp/lisp.h" 24 23 #include "game.h" 25 24 #include "dev.h" 26 #include " pcxread.h"25 #include "imlib/pcxread.h" 27 26 #include "menu.h" 28 #include "dprint.h" 27 #include "lisp/dprint.h" 28 #include "lisp/lisp_gc.h" 29 29 #include "clisp.h" 30 30 #include "chars.h" 31 #include "lisp_gc.h"32 31 #include "cop.h" 33 32 #include "loadgame.h" … … 35 34 #include "demo.h" 36 35 #include "chat.h" 37 #include " jdir.h"36 #include "imlib/jdir.h" 38 37 #include "netcfg.h" 39 38 -
abuse/branches/lol/src/compiled.cpp
r636 r723 15 15 #include <cstring> 16 16 17 #include "lisp .h"17 #include "lisp/lisp.h" 18 18 19 19 using namespace std; -
abuse/branches/lol/src/console.h
r715 r723 12 12 #define __CONSOLE_HPP_ 13 13 14 #include " window.h"14 #include "imlib/window.h" 15 15 16 16 class console -
abuse/branches/lol/src/seq.h
r555 r723 12 12 #define __SEQUENCE_HPP_ 13 13 14 #include "im age.h"15 #include " transimage.h"14 #include "imlib/image.h" 15 #include "imlib/transimage.h" 16 16 #include "items.h" 17 17 #include "cache.h"
Note: See TracChangeset
for help on using the changeset viewer.