summaryrefslogtreecommitdiff
path: root/src/engine/objects/Podium.h
blob: fafdfe63d10df06a39f6e2bf7d49d5741f711546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#pragma once

#include <libultraship.h>
#include <vector>

#include "World.h"

extern "C" {
#include "macros.h"
#include "main.h"
#include "vehicles.h"
#include "waypoints.h"
#include "common_structs.h"
#include "objects.h"
#include "course_offsets.h"
#include "some_data.h"
}


class OPodium : public OObject {
public:
    enum Behaviour : uint16_t {
    };

public:

    explicit OPodium(const FVector& pos);

    virtual void Tick() override;
    virtual void Draw(s32 cameraId) override;
    void func_8008629C(s32 objectIndex, s32 arg1);
    void func_80086424(s32 objectIndex);
    void func_80086528(s32 objectIndex, s32 arg1);

private:
    s32 _podium1Index;
    s32 _podium2Index;
    s32 _podium3Index;
    FVector _pos;
};