Skip to content
Snippets Groups Projects
Forked from tie / ohj1 / 2024k / ohj1ht
13 commits ahead of the upstream repository.
Tasot.cs 294 B
namespace pomppu_possu;
using Jypeli;
/// <summary>
/// Tasot niminen olio, joka luo Tasot nimisen physics object luokan
/// </summary>
public class Tasot : PhysicsObject
{
    public Tasot(double leveys, double korkeus)
        : base(leveys, korkeus, Jypeli.Shape.Rectangle)
    {
    }

}