15 lines
176 B
C++
15 lines
176 B
C++
#pragma once
|
|
|
|
#include "J3ML/Geometry.h"
|
|
|
|
namespace Geometry
|
|
{
|
|
class Sphere
|
|
{
|
|
public:
|
|
Sphere(const Vector3& pos, float radius)
|
|
{
|
|
|
|
}
|
|
};
|
|
} |