1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 23:50:29 +01:00

Updated public methods and properties to internal

This commit is contained in:
Rich Dunne 2020-09-14 13:20:31 -06:00
parent e173d9da0c
commit c141396d64
3 changed files with 35 additions and 35 deletions

View file

@ -5,11 +5,11 @@ namespace SceneManager
{
class Barrier
{
public Rage.Object Object { get; set; }
public Vector3 Position { get; set; }
public float Rotation { get; set; }
internal Rage.Object Object { get; set; }
internal Vector3 Position { get; set; }
internal float Rotation { get; set; }
public Barrier(Rage.Object barrier, Vector3 barrierPosition, float barrierRotation)
internal Barrier(Rage.Object barrier, Vector3 barrierPosition, float barrierRotation)
{
Object = barrier;
Position = barrierPosition;