A rhythm game net ranking service built on ATproto.
at main 10 lines 242 B view raw
1using System.Text.Json.Nodes; 2 3public class PointsComponent(int value) : ScoreComponent { 4 public string GetComponentType() { 5 return "dev.tsunagite.score#points"; 6 } 7 public JsonNode GetValue() { 8 return value; 9 } 10}