mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 14:46:45 +01:00
10 lines
175 B
Java
10 lines
175 B
Java
package com.intellectualcrafters.plot.object;
|
|
|
|
public abstract class RunnableVal<T> implements Runnable
|
|
{
|
|
public T value;
|
|
|
|
@Override
|
|
public abstract void run();
|
|
}
|