budnhead/org.budnhead/core/Physics.cs

14 lines
181 B
C#
Raw Normal View History

2017-05-04 23:57:00 +02:00
using System;
using OpenTK;
2017-05-09 23:41:50 +02:00
namespace org.budnhead.core
2017-05-04 23:57:00 +02:00
{
public abstract class Physics
{
public static Vector3 Gravitation { get; set; } = new Vector3(0,0,-9.81f);
}
}