17 lines
413 B
C#
17 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Q01_Cálculos
|
|
{
|
|
public class Physics
|
|
{
|
|
public static readonly Vector3 EarthMeanGravity = new(0, 0, -9.81f);
|
|
public static Vector3 DefaultGravity = EarthMeanGravity;
|
|
public static Vector3 CurrentGravity = DefaultGravity;
|
|
}
|
|
}
|