1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/Geometry/Sphere.h

15 lines
176 B
C++

#pragma once
#include "J3ML/Geometry.h"
namespace Geometry
{
class Sphere
{
public:
Sphere(const Vector3& pos, float radius)
{
}
};
}