2024-03-08 03:36:14 -05:00

5 lines
100 B
Elixir

defmodule DancingDots.Dot do
defstruct [:x, :y, :radius, :opacity]
@type t :: %__MODULE__{}
end