This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# script ver b0.2 | |
#MIT License | |
#Copyright (c) 2021 oblerion | |
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- file: api/lua/tic80.lua | |
-- TIC-80 API for ZBStudio | |
-- see [TIC-80 wiki](https://github.com/nesbox/TIC-80/wiki/) | |
local API = { | |
-- Special functions | |
TIC = { | |
type = "function", | |
description = [[Main function. It's called at 60 fps (60 times every second).]], | |
args = "()", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef rayImage_h | |
#define rayImage_h | |
#include "raylib.h" | |
// void SetPixel(Image* img,int x,int y,Color col) | |
#define SetPixel ImageDrawPixel | |
// Color GetPixel(Image img,int x,int y) | |
#define GetPixel GetImageColor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef BINAIRY_CAT_H | |
#define BINAIRY_CAT_H | |
#include <stdlib.h> | |
#include <stdio.h> | |
bool FileExists(char* pfile) | |
{ | |
FILE* fic = fopen(pfile,"r"); | |
if(fic!=NULL) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// raylib2 ver 0.1 | |
// describle : raylib extend with new function | |
// author : oblerion | |
// license : MIT 2024 | |
#pragma once | |
#include "raylib.h" | |
#include "raymath.h" | |
// ---------- declare function -------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// the website framework | |
// ver a0.2 | |
// by magnus oblerion | |
class HtmlStyle | |
{ | |
constructor() | |
{ | |
this.list = new Map(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---@return Ansicolor | |
function Ansicolor() | |
---@class Ansicolor | |
local ansicolor = { | |
---@private | |
color={}, | |
---@private | |
sys={}, | |
---@private | |
ctext={}, |