summaryrefslogtreecommitdiff
path: root/src/sims/materials/Material.scala
blob: b05e082aff41c26c4f91aeb43e1f31b1b6d69944 (plain) (blame)
1
2
3
4
5
6
7
package sims.materials

trait Material {
  val density: Double
  val restitution: Double
  val friction: Double
}