refactor: move client/server funcs to net.cc

This commit is contained in:
2026-03-09 12:22:40 -05:00
parent fa77abd446
commit a2a5f6eb57
3 changed files with 28 additions and 194 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
CXX_SRCS = main.cc net.cc
CXX_OBJS = $(CXX_SRCS:.cc=.o)
all: $(TARGET)