Project

00:00

Cut the right wires. Read the clues. Beat the countdown.

Unity C# Puzzle WebGL
Status In development

Platform PC / WebGL
Role Solo developer

Screenshots & Video

Tip: if you prefer YouTube/Vimeo, replace the video block with an iframe inside ratio-16x9.

Technical Overview

0:00 is a short, narrative-driven puzzle game where time is your greatest enemy. You face a ticking countdown and cryptic clues: deduce the correct wire order and cut before it hits zero. Presented as comic vignettes with a noir tone, it focuses on clarity, tension, and replayability.

Highlights

  • Logic + deduction under time pressure.
  • Comic vignette presentation and tight pacing.
  • Event-driven systems and clean architecture.

Code Samples

Representative snippets showcasing architecture or core systems.


public interface IGameState
{
    void Enter();
    void Tick(float deltaTime);
    void Exit();
}