Let me explain what I say
I am making a game
there are 2 characters.
And I make a class called character
dim char1 as new character
dim char2 as new character
And I make a function
Function result(i as integer) as integer
char1.sth.....
char2.sth
But I don't want to write each line of code twice....
And I write that char & i ,but it can't work
what should I do?
