Sphere.cs 129 B

1234567
  1. namespace Urho.Shapes
  2. {
  3. public class Sphere : Shape
  4. {
  5. protected override string ModelResource => "Models/Sphere.mdl";
  6. }
  7. }