mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-17 23:41:00 -04:00
dbae0c3aca
* Rename Screen Contexts * typedef ScreenContext struct * Fix Compile * Rename Course.cpp to Track.cpp * Refactor Course to Track * A few renames * General Cleanup * More Rename * More names * Move TrackSections struct to Track.h --------- Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
17 lines
616 B
C
17 lines
616 B
C
#include "mk64.h"
|
|
#include "common_structs.h"
|
|
|
|
CourseVtx test_course_vertices[] = {
|
|
// Top-left vertex (x, y, z), texture coord (tc), color and alpha (ca)
|
|
{{ -100, 100, 0}, { 0, 0}, {MACRO_COLOR_FLAG(0xFF, 0x00, 0x00, 0), 0x00}}, // Red
|
|
|
|
// Top-right vertex
|
|
{{ 100, 100, 0}, { 1024, 0}, {MACRO_COLOR_FLAG(0x00, 0xFF, 0x00, 0), 0x00}}, // Green
|
|
|
|
// Bottom-right vertex
|
|
{{ 100, -100, 0}, { 1024, 1024}, {MACRO_COLOR_FLAG(0x00, 0x00, 0xFF, 0), 0x00}}, // Blue
|
|
|
|
// Bottom-left vertex
|
|
{{ -100, -100, 0}, { 0, 1024}, {MACRO_COLOR_FLAG(0xFF, 0xFF, 0x00, 0), 0x00}}, // Yellow
|
|
};
|