Getting somewhere lol

This commit is contained in:
2025-01-19 21:23:47 +01:00
parent 0f56916295
commit bb01dccf2b
6 changed files with 286 additions and 51 deletions

View File

@ -49,6 +49,10 @@ type FloatingMessage struct {
ScreenPos rl.Vector2 // Store the screen position for 2D rendering
}
type ChatMessageHandler interface {
HandleServerMessages([]*pb.ChatMessage)
}
const (
MapWidth = 50
MapHeight = 50