I know this has been answer before, but I cannot seem to find an answer for exactly what I want, the others are too specific. Here is my general question; How do you override an enum? Would this work?
//Enum in the main class it is defined in
public enum GameDifficulty
{
i1,
i2,
i3
}
//Enum class being imported:
using game1.classwithenum;
//Would this override the enum and replace i1, i2, and i3 with f1, f2, and f3?
public enum GameDifficulty
{
f1,
f2,
f3
}