Skip to content

Commit 5aa61dc

Browse files
committed
initial commit
0 parents  commit 5aa61dc

37 files changed

+10622
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake-build-debug/
2+
cmake-build-release/
3+
.DS_Store
4+
.idea/
5+
build/
6+
node_modules/

CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake_minimum_required(VERSION 3.28)
2+
project(clay C)
3+
4+
set(CMAKE_C_STANDARD 99)
5+
6+
add_subdirectory("examples/raylib-sidebar-scrolling-container")
7+
add_subdirectory("examples/clay-official-website")

LICENSE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
zlib/libpng license
2+
3+
Copyright (c) 2024 Nic Barker
4+
5+
This software is provided 'as-is', without any express or implied warranty.
6+
In no event will the authors be held liable for any damages arising from the
7+
use of this software.
8+
9+
Permission is granted to anyone to use this software for any purpose,
10+
including commercial applications, and to alter it and redistribute it
11+
freely, subject to the following restrictions:
12+
13+
1. The origin of this software must not be misrepresented; you must not
14+
claim that you wrote the original software. If you use this software in a
15+
product, an acknowledgment in the product documentation would be
16+
appreciated but is not required.
17+
18+
2. Altered source versions must be plainly marked as such, and must not
19+
be misrepresented as being the original software.
20+
21+
3. This notice may not be removed or altered from any source
22+
distribution.

README.md

Lines changed: 1417 additions & 0 deletions
Large diffs are not rendered by default.

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.10

0 commit comments

Comments
 (0)