Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions camping_data.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS camping (
id INT AUTO_INCREMENT PRIMARY KEY,
type VARCHAR(20) NOT NULL, -- 'tent' or 'campfire'
model VARCHAR(50) NOT NULL,
x FLOAT NOT NULL,
y FLOAT NOT NULL,
z FLOAT NOT NULL,
stashID VARCHAR(50), -- For tents only
heading FLOAT NOT NULL
);
398 changes: 398 additions & 0 deletions client.lua

Large diffs are not rendered by default.

Loading