rocket/ogl_editor/src/TrackData.h
2012-10-28 18:10:51 +01:00

20 lines
537 B
C

#pragma once
#include "../../sync/data.h"
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
typedef struct TrackData
{
struct sync_data syncData;
int order[8192];
int orderCount;
int activeTrack;
} TrackData;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Will get the get the track if it exists else create it
int TrackData_createGetTrack(TrackData* trackData, const char* name);