refactor: move display-related functions to display.cc

This commit is contained in:
2026-03-09 12:32:02 -05:00
parent 08b7809c34
commit 0f66b7f4c2
3 changed files with 3 additions and 49 deletions

View File

@@ -2,7 +2,7 @@ CXX = g++
CXXFLAGS = -pthread -Wall -Wextra -O2 -std=c++17
LDFLAGS = -lcurses
TARGET = ct
CXX_SRCS = main.cc net.cc
CXX_SRCS = main.cc net.cc file.cc display.cc
CXX_OBJS = $(CXX_SRCS:.cc=.o)
all: $(TARGET)