mirror of
https://github.com/zeldaret/ph
synced 2026-05-25 07:22:58 -04:00
12 lines
148 B
C++
12 lines
148 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "lib/math.h"
|
|
|
|
struct Cylinder {
|
|
Vec3p pos;
|
|
q20 size; // height and radius
|
|
};
|