Overview
Comment: | Add ObjGameKit.h. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4b97e65b217f0c5968de1be6235142b2 |
User & Date: | js on 2012-08-26 12:25:51 |
Other Links: | manifest | tags |
Context
2012-08-26
| ||
12:34 | Reexport allegro_main on OS X. check-in: 2c9f1864d5 user: js tags: trunk | |
12:25 | Add ObjGameKit.h. check-in: 4b97e65b21 user: js tags: trunk | |
12:22 | Add .gitignore. check-in: 18e92b0b20 user: js tags: trunk | |
Changes
Modified src/Makefile from [b2212b67f6] to [db52009ed2].
1 2 3 4 5 6 7 8 9 | SHARED_LIB = ${LIB_PREFIX}objgamekit${LIB_SUFFIX} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = OGKBitmap.m \ OGKDisplay.m \ OGKEvent.m \ OGKEventQueue.m | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | SHARED_LIB = ${LIB_PREFIX}objgamekit${LIB_SUFFIX} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = OGKBitmap.m \ OGKDisplay.m \ OGKEvent.m \ OGKEventQueue.m INCLUDES = ${SRCS:.m=.h} \ ObjGameKit.h include ../buildsys.mk CPPFLAGS += -DOGK_INTERNAL LD = ${OBJC} |
Added src/ObjGameKit.h version [e806f8df52].
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /* * Copyright (c) 2012 Jonathan Schleifer <js@webkeks.org> * * This software is provided 'as-is', without any express or implied warranty. * In no event will the authors be held liable for any damages arising from the * use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1.) The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2.) Altered source versions must be plainly marked as such, and must not * be misrepresented as being the original software. * 3.) This notice may not be removed or altered from any source distribution. */ #import "OGKDisplay.h" #import "OGKEvent.h" #import "OGKEventQueue.h" #import "OGKBitmap.h" |