I made the code according to the tutorial, however when I load I get the error message that animal.myanimal cannot be found in the assembly.
Can someone please check what I am doing wrong since I would like to be able to play the terrarium game but now I can't even program 1 action
.
edit at some code it said:

Stuck at the first code line of the terrarium...
JasonCA
First, did you clear the default namespace, per the comments at the top of the file
The project must have its default namespace cleared in the project properties
Second, it doesn't look like "MyAnimal" is in the "Animal" namespace, it looks like it's in the root namespace. Therefore, the line should state...
<Assembly: OrganismClass("MyAnimal")>
Hope this helps!
Newton6
<Assembly: OrganismClass("Animal.MyAnimal")>
line with
<Assembly: OrganismClass("[ProjectName].MyAnimal")>
where [ProjectName] is the name of your project.
AshSingh007
I have no idea what the author meant by that since I cannot find a property named default or namespace...
I know tried this:
The class hould be ok now (VBAnimal.Creature then I name the Class file in the project Creature)
However still errors, still don't know what is meant by that clearing part.