Rename Time.* to TimeUtils.*
This commit is contained in:
@@ -17,7 +17,7 @@ endif
|
|||||||
########################
|
########################
|
||||||
CFLAGS += -Isrc
|
CFLAGS += -Isrc
|
||||||
GAMELIB_HEADS := \
|
GAMELIB_HEADS := \
|
||||||
src/Time.h \
|
src/TimeUtils.h \
|
||||||
src/Util.h \
|
src/Util.h \
|
||||||
src/QuadArray2D.h \
|
src/QuadArray2D.h \
|
||||||
src/Draw.h \
|
src/Draw.h \
|
||||||
@@ -27,7 +27,7 @@ GAMELIB_HEADS := \
|
|||||||
src/Entity.h \
|
src/Entity.h \
|
||||||
src/GameLib.h
|
src/GameLib.h
|
||||||
GAMELIBS_OBJS := \
|
GAMELIBS_OBJS := \
|
||||||
$(BUILDDIR)/Time.o \
|
$(BUILDDIR)/TimeUtils.o \
|
||||||
$(BUILDDIR)/Util.o \
|
$(BUILDDIR)/Util.o \
|
||||||
$(BUILDDIR)/QuadArray2D.o \
|
$(BUILDDIR)/QuadArray2D.o \
|
||||||
$(BUILDDIR)/Draw.o \
|
$(BUILDDIR)/Draw.o \
|
||||||
@@ -56,7 +56,7 @@ rebuild: clean all
|
|||||||
#################
|
#################
|
||||||
# GameLib Rules #
|
# GameLib Rules #
|
||||||
#################
|
#################
|
||||||
$(BUILDDIR)/Time.o: src/Time.c $(HEADS)
|
$(BUILDDIR)/TimeUtils.o: src/TimeUtils.c $(HEADS)
|
||||||
$(DO_CC)
|
$(DO_CC)
|
||||||
$(BUILDDIR)/Util.o: src/Util.c $(HEADS)
|
$(BUILDDIR)/Util.o: src/Util.c $(HEADS)
|
||||||
$(DO_CC)
|
$(DO_CC)
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
#include "Draw.h"
|
#include "Draw.h"
|
||||||
#include "Input.h"
|
#include "Input.h"
|
||||||
#include "QuadArray2D.h"
|
#include "QuadArray2D.h"
|
||||||
#include "Time.h"
|
#include "TimeUtils.h"
|
||||||
#include "Util.h"
|
#include "Util.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////
|
////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#include "Draw.h"
|
#include "Draw.h"
|
||||||
#include "Entity.h"
|
#include "Entity.h"
|
||||||
#include "Input.h"
|
#include "Input.h"
|
||||||
#include "Time.h"
|
#include "TimeUtils.h"
|
||||||
#include "Util.h"
|
#include "Util.h"
|
||||||
|
|
||||||
#include "GameLib.h"
|
#include "GameLib.h"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
#include "Draw.h"
|
#include "Draw.h"
|
||||||
#include "Entity.h"
|
#include "Entity.h"
|
||||||
#include "Input.h"
|
#include "Input.h"
|
||||||
#include "Time.h"
|
#include "TimeUtils.h"
|
||||||
#include "Util.h"
|
#include "Util.h"
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "Time.h"
|
#include "TimeUtils.h"
|
||||||
|
|
||||||
/////////////////////////////
|
/////////////////////////////
|
||||||
// Time_GetTime
|
// Time_GetTime
|
||||||
Reference in New Issue
Block a user