Vivid
Loading...
Searching...
No Matches
Sphere.h
1#pragma once
2
3#include "Shape.h"
4
5namespace Vivid
6{
7 class Sphere : public Shape
8 {
9 private:
10 float m_Radius;
11
12 public:
13 Sphere(int radius);
14 };
15}