chore: push for isaac

This commit is contained in:
Nick 2024-11-25 18:50:12 -06:00
parent a5151ef112
commit 45ca7a9718
62 changed files with 385 additions and 55 deletions

View file

@ -0,0 +1,10 @@
module Shared.Model exposing (Model)
import Element exposing (Device)
type alias Model =
{ height : Int
, width : Int
, device : Device
}