summaryrefslogtreecommitdiff
path: root/src/engine/Actor.cpp
blob: 8bd472b081b69ee31f6407e69690b1368b11e864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <libultraship.h>

#include "Actor.h"

AActor::AActor() {}

// Virtual functions to be overridden by derived classes
void AActor::Tick() {  }
void AActor::Draw(Camera *camera) { }
void AActor::Collision(Player* player, AActor* actor) {}
void AActor::Destroy() {
    // Set uuid to zero.
    memset(uuid, 0, sizeof(uuid));
}
bool AActor::IsMod() { return false; }