mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-24 07:11:22 -04:00
af81bad1f3
* fix * Add Actors * Refactor * Update Game.cpp
13 lines
265 B
C++
13 lines
265 B
C++
#include <libultraship.h>
|
|
|
|
#include "Actor.h"
|
|
|
|
//GameActor()
|
|
|
|
AActor::AActor() {}
|
|
|
|
// Virtual functions to be overridden by derived classes
|
|
void AActor::Tick() { }
|
|
void AActor::Draw(Camera *camera) { }
|
|
void AActor::Collision() {}
|
|
void AActor::Destroy() { } |