mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 22:58:09 +00:00
1ed2cd40f3
Eden game object now contains a graphics object with which to delegate graphics operations and store states of the graphics. Much of the video playing is done in the graphics class so I have moved a lot of the video state into there. Some graphics related variables were moved out of eden and into graphics, but many are still in eden. Since they are still coupled there are lots of getters and setters. For example both eden_graphics and eden share a handle to the same video object. I have made a few more things public than desirable. I changed graphics to eden_graphics since it is specialized to eden and not just cryo.
21 lines
302 B
Makefile
21 lines
302 B
Makefile
MODULE := engines/cryo
|
|
|
|
MODULE_OBJS = \
|
|
cryo.o \
|
|
cryolib.o \
|
|
debugger.o \
|
|
detection.o \
|
|
eden.o \
|
|
eden_graphics.o \
|
|
resource.o \
|
|
sound.o \
|
|
video.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_CRYO), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|