mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 12:17:27 +09:00
15 lines
251 B
C#
15 lines
251 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace osu.Game.Graphics
|
|
{
|
|
public class DrawableJoinDate : DrawableDate
|
|
{
|
|
public DrawableJoinDate(DateTimeOffset date) : base(date)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|