Nez.SpringGrid.IUpdatable C# (CSharp) Méthode

IUpdatable() private méthode

private IUpdatable ( ) : void
Résultat void
		void IUpdatable.update()
		{
			_screenSize.X = Screen.width;
			_screenSize.Y = Screen.height;

			foreach( var spring in _springs )
				spring.update();

			foreach( var mass in _points )
				mass.update();
		}