mirror of
https://github.com/Ne0nx3r0/BetterAlias.git
synced 2024-11-12 10:24:28 +01:00
20 lines
392 B
Java
20 lines
392 B
Java
package com.ne0nx3r0.betteralias.alias;
|
|
|
|
public class AliasCommand
|
|
{
|
|
final String command;
|
|
final AliasCommandTypes type;
|
|
int waitTime;
|
|
|
|
public AliasCommand(String command,AliasCommandTypes type,int waitTime)
|
|
{
|
|
this.command = command;
|
|
this.type = type;
|
|
|
|
if(waitTime > 0)
|
|
{
|
|
this.waitTime = waitTime;
|
|
}
|
|
}
|
|
}
|