Skip to content

Instantly share code, notes, and snippets.

View timelesscode's full-sized avatar
💭
Making a classic game for the ages

Timeless timelesscode

💭
Making a classic game for the ages
  • Timeless Software
  • Silicon Valley
View GitHub Profile
@timelesscode
timelesscode / sick.lua
Created July 30, 2025 22:01 — forked from Kyrremann/sick.lua
SICK: Simple Indicative of Competitive sKill - https://love2d.org/wiki/SICK
-- SICK: Simple Indicative of Competitive sKill
-- aka libhighscore
local h = {}
h.scores = {}
function h.set(filename, places, name, score)
h.filename = filename
h.places = places
if not h.load() then
h.scores = {}