mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-21 23:54:48 +00:00
18 lines
434 B
Java
18 lines
434 B
Java
/*
|
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
|
* Send enquiries to dratcliffe@gmail.com
|
|
*/
|
|
|
|
package dan200.computercraft.shared.util;
|
|
|
|
import net.minecraft.screen.PropertyDelegate;
|
|
|
|
public interface DefaultPropertyDelegate extends PropertyDelegate
|
|
{
|
|
@Override
|
|
default void set( int property, int value )
|
|
{
|
|
}
|
|
}
|