Skip to content

Instantly share code, notes, and snippets.

View etherealxx's full-sized avatar
💭
still learning stuff

Etherealxx etherealxx

💭
still learning stuff
View GitHub Profile
@etherealxx
etherealxx / tictactoe.cpp
Created November 15, 2023 11:39
Object oriented tic tac toe.
// 2023 Jibril Wathon
// github.com/etherealxx
// Public Domain
#include <iostream>
#include <vector>
using namespace std;
class TicTacToeBoard {
@etherealxx
etherealxx / GDQuest 3D WorldEnvi.tscn
Created September 6, 2024 08:18
pretty Godot 3D WorldEnvirontment template, just instantiate it as a child to your 3d scene tree that hasn't had a WorldEnvironment node yet
; Compiled by me into a single instantiable Godot 4 scene
; MIT No Attribution License
; https://opensource.org/license/MIT-0
; Copyright (c) 2024 Etherealxx
;
; Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.
;
; THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.