Skip to content

Instantly share code, notes, and snippets.

View MisterSirCode's full-sized avatar
🧀
Bored

Taylor Schneider MisterSirCode

🧀
Bored
View GitHub Profile
/** Subinterface of BlockEntityProvider that reduces type checking and conversion boilerplate related to tickers.<br>
* This interface should be implemented by the {@code Block}.<br>
* The {@code BlockEntity} must implement {@link BlockEntityHost.Hosted}.
* @param <T> class of the block entity hosted by this block
* @author Daomephsta
*/
public interface BlockEntityHost<T extends BlockEntity & BlockEntityHost.Hosted> extends BlockEntityProvider
{
@Override
public default <U extends BlockEntity> BlockEntityTicker<U> getTicker(
@gre
gre / easing.js
Last active April 30, 2024 04:58
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {