1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Add paint.c

This commit is contained in:
Marijn van der Werf
2016-04-29 11:59:43 +02:00
committed by duncanspumpkin
parent 221d5cb57e
commit e49cd101d3
3 changed files with 14 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
C650B2191CCABBDD00B4D91C /* S4Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C650B2151CCABBDD00B4D91C /* S4Importer.cpp */; };
C650B21A1CCABBDD00B4D91C /* tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C650B2171CCABBDD00B4D91C /* tables.cpp */; };
C650B21C1CCABC4400B4D91C /* ConvertCommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C650B21B1CCABC4400B4D91C /* ConvertCommand.cpp */; };
C65A67F31CD367F60089465B /* paint.c in Sources */ = {isa = PBXBuildFile; fileRef = C65A67F21CD367F60089465B /* paint.c */; };
D41B73EF1C2101890080A7B9 /* libcurl.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D41B73EE1C2101890080A7B9 /* libcurl.tbd */; };
D41B73F11C21018C0080A7B9 /* libssl.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D41B73F01C21018C0080A7B9 /* libssl.tbd */; };
D41B741D1C210A7A0080A7B9 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D41B741C1C210A7A0080A7B9 /* libiconv.tbd */; };
@@ -237,6 +238,8 @@
C650B2171CCABBDD00B4D91C /* tables.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tables.cpp; sourceTree = "<group>"; };
C650B2181CCABBDD00B4D91C /* Tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tables.h; sourceTree = "<group>"; };
C650B21B1CCABC4400B4D91C /* ConvertCommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConvertCommand.cpp; sourceTree = "<group>"; };
C65A67F11CD367F60089465B /* paint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = paint.h; sourceTree = "<group>"; };
C65A67F21CD367F60089465B /* paint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = paint.c; sourceTree = "<group>"; };
D41B73EE1C2101890080A7B9 /* libcurl.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libcurl.tbd; path = usr/lib/libcurl.tbd; sourceTree = SDKROOT; };
D41B73F01C21018C0080A7B9 /* libssl.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libssl.tbd; path = usr/lib/libssl.tbd; sourceTree = SDKROOT; };
D41B741C1C210A7A0080A7B9 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
@@ -801,6 +804,8 @@
D44271221CC81B3200D84D28 /* keyboard_shortcut.h */,
C61FAAE01CD1643A0010C9D8 /* paint_surface.c */,
C61FAAE11CD1643A0010C9D8 /* paint_surface.h */,
C65A67F21CD367F60089465B /* paint.c */,
C65A67F11CD367F60089465B /* paint.h */,
D44271231CC81B3200D84D28 /* screenshot.c */,
D44271241CC81B3200D84D28 /* screenshot.h */,
D44271251CC81B3200D84D28 /* Theme.cpp */,
@@ -1470,6 +1475,7 @@
D44272621CC81B3200D84D28 /* footpath.c in Sources */,
D44272521CC81B3200D84D28 /* util.c in Sources */,
D44272071CC81B3200D84D28 /* cursors.c in Sources */,
C65A67F31CD367F60089465B /* paint.c in Sources */,
D442724D1CC81B3200D84D28 /* scenario_list.c in Sources */,
D44272A21CC81B3200D84D28 /* mapgen.c in Sources */,
D44272201CC81B3200D84D28 /* viewport.c in Sources */,